Commit 45d02f31 authored by blackheaven's avatar blackheaven
Browse files

Add dockerize

parent 8e588074
Loading
Loading
Loading
Loading

.dockerignore

0 → 100644
+2 −0
Original line number Diff line number Diff line
.git
*.ipynb
 No newline at end of file

Dockerfile

0 → 100644
+9 −0
Original line number Diff line number Diff line
FROM python:3.10-alpine

COPY . /app
WORKDIR /app

RUN pip install -r requirements.txt

CMD ["flask", "run", "--host=0.0.0.0"]
EXPOSE 5000