mirror of
https://github.com/recklessop/Zerto_Exporter.git
synced 2026-07-02 23:53:13 -04:00
8a48f1bbcf
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6210088 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6210088 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6210098 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6210098 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-6159410
10 lines
139 B
Docker
10 lines
139 B
Docker
FROM python:3.13.0b1-slim
|
|
|
|
EXPOSE 9999
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY app/* /usr/src/app/
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|