mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2026-03-06 10:00:39 +03:00
fix: Dockerfile to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-15123178 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-15123206 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-15123211 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-15123213 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-15123214
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
FROM python:3.14.0-slim-trixie AS base
|
FROM python:3.14.3-slim-trixie AS base
|
||||||
|
|
||||||
RUN apt-get update -qy \
|
RUN apt-get update -qy \
|
||||||
&& apt-get install -qyy \
|
&& apt-get install -qyy \
|
||||||
@@ -19,7 +19,7 @@ COPY uv.lock /_lock/
|
|||||||
|
|
||||||
RUN cd /_lock && uv sync --locked --no-install-project
|
RUN cd /_lock && uv sync --locked --no-install-project
|
||||||
##########################################################################
|
##########################################################################
|
||||||
FROM python:3.14.0-slim-trixie
|
FROM python:3.14.3-slim-trixie
|
||||||
|
|
||||||
ENV PATH=/panettone/bin:$PATH
|
ENV PATH=/panettone/bin:$PATH
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user