7 lines
146 B
Docker
7 lines
146 B
Docker
FROM python:3.10
|
|
LABEL authors="jmueller"
|
|
COPY requirements.txt .
|
|
RUN pip install -r ./requirements.txt
|
|
ADD main.py .
|
|
CMD ["python", "./main.py"]
|