ci: add container publishing workflow

This commit is contained in:
mtoohey31
2021-11-10 23:43:14 -05:00
parent 864efed094
commit b7e5a80b21
2 changed files with 24 additions and 2 deletions

View File

@@ -3,6 +3,6 @@ FROM python:3-alpine
WORKDIR /build
COPY requirements.txt build_repo.py ./
RUN pip3 install -r requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt
ENTRYPOINT python3 build_repo.py
ENTRYPOINT ["python3", "build_repo.py"]