mirror of
https://github.com/notherealmarco/SLAACsense.git
synced 2025-03-13 05:19:10 +01:00
7 lines
No EOL
148 B
Docker
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"] |