mirror of
https://github.com/recklessop/Zerto_Exporter.git
synced 2026-07-02 23:53:13 -04:00
5385aad899
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-6062100 - https://snyk.io/vuln/SNYK-DEBIAN12-PERL-5489190 - https://snyk.io/vuln/SNYK-DEBIAN12-PERL-6085273 - https://snyk.io/vuln/SNYK-DEBIAN12-SHADOW-1559391 - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963
10 lines
139 B
Docker
10 lines
139 B
Docker
FROM python:3.13.0a2-slim
|
|
|
|
EXPOSE 9999
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY app/* /usr/src/app/
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|