mirror of
https://github.com/recklessop/Zerto_Exporter.git
synced 2026-07-02 23:53:13 -04:00
3892678659
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-5894114 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-5927132 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-5927132 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-5825659 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-5825659
10 lines
135 B
Docker
10 lines
135 B
Docker
FROM python:3.12-slim
|
|
|
|
EXPOSE 9999
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY app/* /usr/src/app/
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|