Skip to content

Commit bc99fbe

Browse files
committed
refactor: Rearrange ARG declarations for clarity in Dockerfile
1 parent 527e1be commit bc99fbe

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,14 @@ RUN --mount=type=cache,target=/root/.cache/pip \
2323
python -m pip install -r requirements.txt
2424

2525
USER appuser
26-
26+
ARG MAILJET_API_KEY
27+
ARG MAILJET_API_SECRET
28+
ARG MAILJET_DEFAULT_SENDER
29+
ARG PG_HOST
30+
ARG PG_PORT
31+
ARG PG_USER
32+
ARG PG_PASSWORD
33+
ARG PG_DB
2734
COPY . .
2835

2936
# Copy and load environment variables

0 commit comments

Comments
 (0)