8 lines
150 B
Docker
8 lines
150 B
Docker
|
|
FROM python:3.11
|
||
|
|
COPY ./requirements.txt /
|
||
|
|
WORKDIR /
|
||
|
|
RUN pip install -r requirements.txt
|
||
|
|
COPY . /
|
||
|
|
EXPOSE 5005
|
||
|
|
CMD [ "flask", "run", "--host=0.0.0.0"]
|