Skip to content

Commit

Permalink
Adding Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nithya committed Jun 15, 2023
1 parent 91b2305 commit 87bb7ee
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM python:3.9

COPY requirements_frozen.txt /requirements.txt
RUN pip install -r requirements.txt

COPY marge/ /marge/
COPY marge.app /marge.app

CMD ["/marge.app"]

0 comments on commit 87bb7ee

Please sign in to comment.