mirror of
https://github.com/notherealmarco/SLAACsense.git
synced 2025-03-13 13:25:22 +01:00
7 lines
148 B
Text
7 lines
148 B
Text
|
FROM python:latest
|
||
|
LABEL authors="notherealmarco"
|
||
|
WORKDIR /app/
|
||
|
COPY . .
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
ENTRYPOINT ["python3", "/app/main.py"]
|