Skip to content

Commit

Permalink
added docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
aqib0770 committed Nov 26, 2023
1 parent 449a987 commit 4983d25
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
artifacts/
prediction_artifacts/
predictions/
logs/
notebooks/
env/
LICENSE
README.md
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM python:3.8-slim-buster

WORKDIR /app

COPY . /app

RUN pip install -r requirements.txt

CMD [ "python3","app.py" ]

0 comments on commit 4983d25

Please sign in to comment.