Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/production/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#########################################################################################################
# Python compile image
#########################################################################################################
FROM python:3.14.2-slim-bookworm AS app-compiler
FROM python:3.14.3-slim-bookworm AS app-compiler

ENV PYTHONUNBUFFERED=1

Expand Down Expand Up @@ -31,7 +31,7 @@
#########################################################################################################
# Python build image
#########################################################################################################
FROM python:3.14.2-slim-bookworm AS python-builder
FROM python:3.14.3-slim-bookworm AS python-builder

LABEL maintainer="srtabs@gmail.com"

Expand Down Expand Up @@ -70,7 +70,7 @@
&& adduser --system --ingroup daiv --uid 1001 --home /home/daiv daiv

ENV PATH="/home/daiv/.venv/bin:$PATH"
ENV PYTHONPATH="$PYTHONPATH:/home/daiv/app/"

Check warning on line 73 in docker/production/app/Dockerfile

View workflow job for this annotation

GitHub Actions / build

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PYTHONPATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
ENV PYTHONUNBUFFERED=1

# Copy python compiled requirements
Expand Down
Loading