13 lines
211 B
Docker
13 lines
211 B
Docker
FROM python:3.10-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt /app
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
ENV FLASK_APP=src/app.py
|
|
|
|
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0", "--port=8081"]
|