initial commit
This commit is contained in:
9
Dockerfile
Normal file
9
Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
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" ]
|
||||
Reference in New Issue
Block a user