mirror of
https://github.com/recklessop/Zerto_Exporter.git
synced 2026-07-03 16:03:15 -04:00
9 lines
134 B
Docker
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 |