Files
Zerto_Exporter/Dockerfile
T
2022-01-27 11:05:57 +03:30

9 lines
134 B
Docker

FROM python:latest
EXPOSE 9999
WORKDIR /usr/src/app
COPY app/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt