11 lines
No EOL
260 B
Docker
11 lines
No EOL
260 B
Docker
FROM python:3.11-slim
|
|
WORKDIR /paste
|
|
COPY requirements.txt requirements.txt
|
|
COPY paste ${WORKDIR}
|
|
|
|
RUN apt update && apt install -y wget && apt -y clean
|
|
RUN pip install -r requirements.txt
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"] |