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

Bump python from 3.11.4-slim to 3.11.5-slim #452

Merged
merged 1 commit into from
Aug 30, 2023
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 IntegrationTests.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.4-slim as build
FROM python:3.11.5-slim as build

ENV PIP_NO_CACHE_DIR=off \
PIP_DISABLE_PIP_VERSION_CHECK=on \
Expand All @@ -17,7 +17,7 @@ WORKDIR /opt
COPY pyproject.toml poetry.lock ./
RUN $POETRY_HOME/bin/poetry install --only integration-tests --no-root

FROM python:3.11.4-slim
FROM python:3.11.5-slim
ENV PATH="/opt/.venv/bin:$PATH" \
PYTHONUNBUFFERED=1 \
VIRTUAL_ENV=/opt/.venv \
Expand Down
4 changes: 2 additions & 2 deletions RemoteSettings.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.4 as compile
FROM python:3.11.5 as compile

ENV PIP_NO_CACHE_DIR=off \
PIP_DISABLE_PIP_VERSION_CHECK=on \
Expand Down Expand Up @@ -27,7 +27,7 @@ COPY ./kinto-remote-settings ./kinto-remote-settings
COPY version.json .
RUN pip install ./kinto-remote-settings

FROM python:3.11.4-slim as production
FROM python:3.11.5-slim as production

ENV KINTO_INI=config/local.ini \
PATH="/opt/.venv/bin:$PATH" \
Expand Down
Loading