Skip to content
Merged
Show file tree
Hide file tree
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: Copyright (c) 2023-2026 Almaz Ilaletdinov <a.ilaletdinov@yandex.ru>
# SPDX-License-Identifier: MIT

FROM python:3.14.6-slim as base
FROM python:3.14.7-slim as base
ENV PIP_DISABLE_PIP_VERSION_CHECK=1
WORKDIR /app

Expand All @@ -16,7 +16,7 @@ COPY --from=poetry /app/requirements.txt /tmp/requirements.txt
RUN cat /tmp/requirements.txt
RUN python -m venv /app/.venv && /app/.venv/bin/pip install -r /tmp/requirements.txt

FROM python:3.14.6-slim as runtime
FROM python:3.14.7-slim as runtime

# Copy only requirements to cache them in docker layer
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: Copyright (c) 2023-2026 Almaz Ilaletdinov <a.ilaletdinov@yandex.ru>
# SPDX-License-Identifier: MIT

FROM python:3.14.6-slim
FROM python:3.14.7-slim
ENV PIP_DISABLE_PIP_VERSION_CHECK=1
ENV POETRY_VIRTUALENVS_IN_PROJECT=true
# https://stackoverflow.com/questions/61863806/stuck-in-watching-for-file-changes-with-statreloader
Expand Down