Skip to content

Commit

Permalink
docker: fix build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
csegarragonz committed Sep 2, 2024
1 parent 1d903ee commit 1018341
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/faabric.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG FAABRIC_VERSION
SHELL ["/bin/bash", "-c"]

# Flag to say we're in a container
ENV FAABRIC_DOCKER "on"
ENV FAABRIC_DOCKER="on"

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

# CLI setup
ENV TERM xterm-256color
ENV TERM=xterm-256color

RUN echo ". /code/faabric/bin/workon.sh" >> ~/.bashrc
CMD ["/bin/bash", "-l"]
1 change: 1 addition & 0 deletions include/faabric/util/files.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <cstdint>
#include <faabric/util/exception.h>
#include <string>
#include <vector>
Expand Down

0 comments on commit 1018341

Please sign in to comment.