Added Dockerfile and instructions for running a standalone container

This commit is contained in:
mtoohey31
2020-12-27 18:31:10 -05:00
parent 7184f2aa8e
commit 40f0b317a6
2 changed files with 27 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3-alpine
WORKDIR /build
COPY requirements.txt build_repo.py ./
RUN pip3 install -r requirements.txt
ENTRYPOINT python3 build_repo.py