We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50521f commit e66b41eCopy full SHA for e66b41e
docker/build.dockerfile
@@ -2,7 +2,7 @@ ARG CPP_VERSION
2
ARG EXAMPLES_VERSION
3
# Base image is not re-built often and tag may lag behind
4
FROM faasm.azurecr.io/examples-base:0.6.0_0.4.0 AS base
5
-FROM faasm.azurecr.io/cpp-sysroot:${CPP_VERSION}
+FROM faasm.azurecr.io/cpp-sysroot:${CPP_VERSION:-dead}
6
7
SHELL ["/bin/bash", "-c"]
8
ENV IN_DOCKER="on"
@@ -50,6 +50,7 @@ RUN mkdir -p code \
50
&& git submodule update --init -f examples/tensorflow
51
52
# Build the examples and demo functions
53
+ENV PATH=${PATH}:/root/.cargo/bin
54
RUN cd /code/examples \
55
&& ./bin/create_venv.sh \
56
&& source venv/bin/activate \
0 commit comments