try removing build arg from workflow
Some checks failed
Build container images / build (push) Failing after 20s

This commit is contained in:
2023-08-16 17:21:58 -07:00
parent 0e2e210f50
commit d1780aa95b
2 changed files with 2 additions and 3 deletions

View File

@@ -35,4 +35,3 @@ jobs:
build_args: |
PYTHON_VERSION=3
ALPINE_VERSION=3.18
ROTATE_BACKUPS_VERSION=8.1

View File

@@ -1,13 +1,13 @@
ARG PYTHON_VERSION=3
ARG ALPINE_VERSION=3.18
ARG ROTATE_BACKUPS_VERSION=latest
ARG ROTATE_BACKUPS_VERSION=8.1
FROM python:${PYTHON_VERSION}-alpine${ALPINE_VERSION}
RUN apk update && apk add less
RUN pip install rotate-backups==8.1
# RUN pip install rotate-backups==8.1
RUN pip install rotate-backups==${ROTATE_BACKUPS_VERSION}
RUN mkdir /data