Skip to content

Commit

Permalink
Added Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Luois45 committed Feb 13, 2022
1 parent b0fb88a commit d03f1a4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM python:3.8

WORKDIR /usr/src/app

COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY activate_packages.py ./

CMD [ "python", "./activate_packages.py" ]

0 comments on commit d03f1a4

Please sign in to comment.