typo
Some checks failed
Build container images / build (push) Failing after 18s

This commit is contained in:
James Brumond 2023-08-16 18:05:21 -07:00
parent 6a7c884bc6
commit f95393b1a0
Signed by: james
GPG Key ID: E8F2FC44BAA3357A
3 changed files with 7 additions and 4 deletions

View File

@ -1,7 +1,8 @@
name: Build and publish container images
on: [ workflow_dispatch ]
on:
- workflow_dispatch
jobs:
build-and-publish:
@ -39,6 +40,7 @@ jobs:
platforms: |
linux/amd64
linux/arm64
build_args: |
build-args: |
PYTHON_VERSION=3
ALPINE_VERSION=3.18
ROTATE_BACKUPS_VERSION=8.1

View File

@ -32,6 +32,6 @@ jobs:
platforms: |
linux/amd64
linux/arm64
build_args: |
build-args: |
PYTHON_VERSION=3
ALPINE_VERSION=3.18

View File

@ -1,12 +1,13 @@
ARG PYTHON_VERSION=3
ARG ALPINE_VERSION=3.18
ARG ROTATE_BACKUPS_VERSION=latest
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==${ROTATE_BACKUPS_VERSION}
RUN mkdir /data