Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update python docker tag to v3.13.2 #9

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM python:3.13.1-slim@sha256:031ebf3cde9f3719d2db385233bcb18df5162038e9cda20e64e08f49f4b47a2f
FROM python:3.13.2-slim@sha256:f3614d98f38b0525d670f287b0474385952e28eb43016655dd003d0e28cf8652
LABEL maintainer="SBB Polarion Team <[email protected]>"

ARG APP_IMAGE_VERSION=0.0.0-dev
WORKDIR ${WORKING_DIR}

Check warning on line 5 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$WORKING_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 5 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Relative workdir without an absolute workdir declared within the build can have unexpected results if the base image changes

WorkdirRelativePath: Relative workdir "" can have unexpected results if the base image changes More info: https://docs.docker.com/go/dockerfile/rule/workdir-relative-path/

Check warning on line 5 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Relative workdir without an absolute workdir declared within the build can have unexpected results if the base image changes

WorkdirRelativePath: Relative workdir "" can have unexpected results if the base image changes More info: https://docs.docker.com/go/dockerfile/rule/workdir-relative-path/

Check warning on line 5 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$WORKING_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

COPY requirements.txt ${WORKING_DIR}/requirements.txt

Check warning on line 7 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$WORKING_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 7 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$WORKING_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
COPY ./app/ ${WORKING_DIR}/app/

Check warning on line 8 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$WORKING_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 8 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$WORKING_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
COPY ./poetry.lock ${WORKING_DIR}

Check warning on line 9 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$WORKING_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 9 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$WORKING_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
COPY ./pyproject.toml ${WORKING_DIR}

Check warning on line 10 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$WORKING_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 10 in Dockerfile

View workflow job for this annotation

GitHub Actions / release-please

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$WORKING_DIR' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

RUN pip install --no-cache-dir -r "${WORKING_DIR}"/requirements.txt && poetry install --no-root

Expand Down
Loading