9 lines
254 B
Docker
9 lines
254 B
Docker
FROM ubuntu:22.04
|
|
RUN apt-get update -y && apt-get install -y python3-dev python3-pip
|
|
WORKDIR /app
|
|
COPY ./requirements.txt /app/requirements.txt
|
|
COPY ./templates /app/templates
|
|
RUN pip install -r requirements.txt
|
|
COPY . /app
|
|
|
|
CMD [ "python3","./app.py" ] |