Skip to content

Commit

Permalink
Build: Change order of feature flags env in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ilija-lazoroski committed Dec 19, 2023
1 parent 8621b2b commit 614b9f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_scripts/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
ARG PYTHON_VERSION=3.11
ARG FEATURE_FLAGS=""
ENV FEATURE_FLAGS=${FEATURE_FLAGS}
# Install python and some build dependencies
FROM python:$PYTHON_VERSION-slim as builder
COPY ./monkey /monkey
WORKDIR /monkey
ENV FEATURE_FLAGS=${FEATURE_FLAGS}
RUN python -m venv . \
&& export CI=1 \
&& . bin/activate \
Expand Down

0 comments on commit 614b9f6

Please sign in to comment.