Skip to content

Commit 1018341

Browse files
committed
docker: fix build warnings
1 parent 1d903ee commit 1018341

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docker/faabric.dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG FAABRIC_VERSION
55
SHELL ["/bin/bash", "-c"]
66

77
# Flag to say we're in a container
8-
ENV FAABRIC_DOCKER "on"
8+
ENV FAABRIC_DOCKER="on"
99

1010
# Put the code in place
1111
WORKDIR /code
@@ -30,7 +30,7 @@ RUN ./bin/create_venv.sh \
3030
RUN echo "set auto-load safe-path /" > /root/.gdbinit
3131

3232
# CLI setup
33-
ENV TERM xterm-256color
33+
ENV TERM=xterm-256color
3434

3535
RUN echo ". /code/faabric/bin/workon.sh" >> ~/.bashrc
3636
CMD ["/bin/bash", "-l"]

include/faabric/util/files.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22

3+
#include <cstdint>
34
#include <faabric/util/exception.h>
45
#include <string>
56
#include <vector>

0 commit comments

Comments
 (0)