Skip to content

Commit e140f25

Browse files
committed
fix: Dockerfile to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE318-EXPAT-6241039 - https://snyk.io/vuln/SNYK-ALPINE318-EXPAT-6241040
1 parent 8bcbe3b commit e140f25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM python:3.10-alpine3.18 AS builder
1+
FROM python:3.13.0a4-alpine3.18 AS builder
22

33
RUN apk add --no-cache cargo gcc build-base
44
WORKDIR /app
55
COPY requirements.txt /app/requirements.txt
66
RUN pip install -r requirements.txt
77

8-
FROM python:3.10-alpine3.18
8+
FROM python:3.13.0a4-alpine3.18
99

1010
LABEL org.label-schema.schema-version = "1.0"
1111
LABEL org.label-schema.name = "NotifyMe"

0 commit comments

Comments
 (0)