11 lines
No EOL
191 B
Docker
11 lines
No EOL
191 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.9-bullseye
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY app.py app.py
|
|
CMD ["python3", "app.py"] |