12 lines
206 B
Docker
Executable File
12 lines
206 B
Docker
Executable File
FROM python
|
|
|
|
RUN pip install --upgrade pip
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
COPY ./src .
|
|
|
|
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]
|