mirror of
https://github.com/recklessop/Zerto_Exporter.git
synced 2026-07-03 16:03:15 -04:00
d4c9037bb0
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN11-DPKG-2847942 - https://snyk.io/vuln/SNYK-DEBIAN11-GZIP-2444256 - https://snyk.io/vuln/SNYK-DEBIAN11-LIBTASN16-3061097 - https://snyk.io/vuln/SNYK-DEBIAN11-OPENSSL-2807596 - https://snyk.io/vuln/SNYK-DEBIAN11-OPENSSL-2933518
10 lines
139 B
Docker
10 lines
139 B
Docker
FROM python:3.12.0a5-slim
|
|
|
|
EXPOSE 9999
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY app/* /usr/src/app/
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|