SLAACsense/Dockerfile

7 lines
148 B
Text
Raw Normal View History

2023-12-07 00:31:47 +01:00
FROM python:latest
LABEL authors="notherealmarco"
WORKDIR /app/
COPY . .
RUN pip install -r requirements.txt
ENTRYPOINT ["python3", "/app/main.py"]