SLAACsense/Dockerfile
2023-12-07 00:31:47 +01:00

7 lines
No EOL
148 B
Docker

FROM python:latest
LABEL authors="notherealmarco"
WORKDIR /app/
COPY . .
RUN pip install -r requirements.txt
ENTRYPOINT ["python3", "/app/main.py"]