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

[Snyk] Security upgrade ubuntu from 22.04 to 22.10 #4

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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ARG PYTHON=python3.10
ARG GIT_PYTHON_REFRESH

# Base image at the start of the build
FROM ubuntu:22.04 AS builder-image
FROM ubuntu:22.10 AS builder-image
ARG REQUIREMENTS_PATH
ARG PYTHON

Expand All @@ -28,7 +28,7 @@ RUN pip3 install --no-cache-dir wheel && \
pip3 install --no-cache-dir -r /requirements.txt

############################################# 2 STAGE #############################################
FROM ubuntu:22.04 AS runner-image
FROM ubuntu:22.10 AS runner-image
ARG REQUIREMENTS_PATH
ARG PORT_WEB_MIRROR
ARG PORT_WEB_EXPORTER
Expand Down