exporter/Dockerfile
2025-04-10 01:51:02 +02:00

9 lines
121 B
Docker

FROM python:latest
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
EXPOSE 8000
CMD ["python", "main.py"]