11 lines
162 B
Text
11 lines
162 B
Text
|
FROM python:3-bookworm
|
||
|
|
||
|
WORKDIR /python-docker
|
||
|
|
||
|
COPY requirements.txt requirements.txt
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
CMD ["python", "./app.py"]
|