-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make workon.sh generate a working venv * Update faabric-base.dockerfile with newer dependencies Keeping old versions during transition to newer toolchain * Fix missing includes * Update zstd * Remove unnecessary apt-get update in faabric.dockerfile * Remove dependencies unnecessary for faabric * Bump to 0.2.0 Co-authored-by: Simon Shillaker <[email protected]>
- Loading branch information
1 parent
1bb5c13
commit 2699f67
Showing
12 changed files
with
56 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
FAABRIC_VERSION=0.1.2 | ||
FAABRIC_CLI_IMAGE=faasm/faabric:0.1.2 | ||
FAABRIC_VERSION=0.2.0 | ||
FAABRIC_CLI_IMAGE=faasm/faabric:0.2.0 | ||
COMPOSE_PROJECT_NAME=faabric-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.2 | ||
0.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,55 @@ | ||
FROM ubuntu:20.04 | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y software-properties-common | ||
RUN apt-get install -y software-properties-common gpg wget curl | ||
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|apt-key add - | ||
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc | apt-key add - | ||
RUN add-apt-repository -y -n "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-10 main" | ||
RUN add-apt-repository -y -n "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-13 main" | ||
RUN add-apt-repository -y -n "deb https://apt.kitware.com/ubuntu/ focal main" | ||
RUN add-apt-repository -y -n ppa:ubuntu-toolchain-r/test | ||
RUN apt-get update | ||
|
||
RUN apt install -y \ | ||
autoconf \ | ||
automake \ | ||
build-essential \ | ||
clang-10 \ | ||
clang-13 \ | ||
clang-format-10 \ | ||
clang-format-13 \ | ||
clang-tidy-10 \ | ||
clang-tidy-13 \ | ||
clang-tools-13 \ | ||
cmake \ | ||
g++-11 \ | ||
git \ | ||
libhiredis-dev \ | ||
libtool \ | ||
kitware-archive-keyring \ | ||
libboost-filesystem-dev \ | ||
libc++-13-dev \ | ||
libc++abi-13-dev \ | ||
libcurl4-openssl-dev \ | ||
libhiredis-dev \ | ||
libpython3-dev \ | ||
libssl-dev \ | ||
libstdc++-11-dev \ | ||
libtool \ | ||
libunwind-13-dev \ | ||
libz-dev \ | ||
lld-13 \ | ||
lldb-13 \ | ||
make \ | ||
ninja-build \ | ||
pkg-config \ | ||
python3-dev \ | ||
python3-pip \ | ||
python3-venv \ | ||
redis-tools \ | ||
wget | ||
sudo \ | ||
unzip | ||
|
||
# CMake | ||
RUN apt remove --purge --auto-remove cmake | ||
WORKDIR /setup | ||
RUN wget -q -O \ | ||
cmake-linux.sh \ | ||
https://github.com/Kitware/CMake/releases/download/v3.18.2/cmake-3.18.2-Linux-x86_64.sh | ||
RUN sh cmake-linux.sh -- --skip-license --prefix=/usr/local | ||
RUN curl -s -L -o /tmp/conan-latest.deb https://github.com/conan-io/conan/releases/latest/download/conan-ubuntu-64.deb && sudo dpkg -i /tmp/conan-latest.deb && rm -f /tmp/conan-latest.deb | ||
|
||
# Tidy up | ||
WORKDIR / | ||
RUN rm -r /setup | ||
RUN apt-get clean autoclean | ||
RUN apt-get autoremove |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#pragma once | ||
|
||
#include <string> | ||
#include <unordered_set> | ||
|
||
namespace faabric::util { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters