We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d903ee commit 1018341Copy full SHA for 1018341
docker/faabric.dockerfile
@@ -5,7 +5,7 @@ ARG FAABRIC_VERSION
5
SHELL ["/bin/bash", "-c"]
6
7
# Flag to say we're in a container
8
-ENV FAABRIC_DOCKER "on"
+ENV FAABRIC_DOCKER="on"
9
10
# Put the code in place
11
WORKDIR /code
@@ -30,7 +30,7 @@ RUN ./bin/create_venv.sh \
30
RUN echo "set auto-load safe-path /" > /root/.gdbinit
31
32
# CLI setup
33
-ENV TERM xterm-256color
+ENV TERM=xterm-256color
34
35
RUN echo ". /code/faabric/bin/workon.sh" >> ~/.bashrc
36
CMD ["/bin/bash", "-l"]
include/faabric/util/files.h
@@ -1,5 +1,6 @@
1
#pragma once
2
3
+#include <cstdint>
4
#include <faabric/util/exception.h>
#include <string>
#include <vector>
0 commit comments