Skip to content

Commit

Permalink
add dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
averak committed Jan 27, 2024
1 parent ab84832 commit 2cef74a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM python:3.9

WORKDIR /app
COPY . /app/

RUN pip install --upgrade pip && pip install pipenv
RUN pipenv install
ENTRYPOINT ["pipenv", "run", "start"]

0 comments on commit 2cef74a

Please sign in to comment.