Added Readme & Dockerfile
This commit is contained in:
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@ -0,0 +1,7 @@
|
||||
FROM python:3.11
|
||||
COPY ./requirements.txt /
|
||||
WORKDIR /
|
||||
RUN pip install -r requirements.txt
|
||||
COPY . /
|
||||
EXPOSE 5005
|
||||
CMD [ "flask", "run", "--host=0.0.0.0"]
|
||||
Reference in New Issue
Block a user