Files
Flask_Webserver/Dockerfile
2024-01-12 11:55:01 +01:00

9 lines
250 B
Docker

FROM ubuntu:22.04.03
RUN apt-get update -y && apt-get install -y python python-pip
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
COPY ./templates /app/templates
RUN pip install -r requirements.txt
COPY . /app
CMD [ "python","./app.py" ]