Compare commits

...

2 commits

Author SHA1 Message Date
155467bbbf
Improve wording 2024-08-18 18:04:19 +02:00
d47d3b3c7d
Remove --push flag 2024-08-18 18:04:05 +02:00
3 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
FROM archlinux:base-devel
LABEL org.opencontainers.image.title="actions-docker"
LABEL org.opencontainers.image.description="StarOpenSource's Docker image for actions pipelines."
LABEL org.opencontainers.image.description="StarOpenSource's Docker image for CI/CD pipelines."
LABEL org.opencontainers.image.authors="JeremyStar™ <jeremystartm@staropensource.de> (@jeremystartm)"
LABEL org.opencontainers.image.url="https://git.staropensource.de/StarOpenSource/actions-docker/src/branch/develop/README.md"
LABEL org.opencontainers.image.documentation=""

View file

@ -8,8 +8,8 @@ help:
build:
docker buildx rm actions-docker || true
docker buildx create --name actions-docker --bootstrap --use
docker buildx build --push --platform ${PLATFORMS} -t git.staropensource.de/staropensource/actions-docker:latest -f Dockerfile .
docker buildx build --push --platform ${PLATFORMS} -t git.staropensource.de/staropensource/actions-docker:java -f Dockerfile.java .
docker buildx build --platform ${PLATFORMS} -t git.staropensource.de/staropensource/actions-docker:latest -f Dockerfile .
docker buildx build --platform ${PLATFORMS} -t git.staropensource.de/staropensource/actions-docker:java -f Dockerfile.java .
docker buildx rm actions-docker
upload: build
docker push git.staropensource.de/staropensource/actions-docker:latest

View file

@ -1,5 +1,5 @@
# actions-docker
This repository contains the `Dockerfile` used for building the image which powers all of StarOpenSource's action pipelines.
This repository contains the `Dockerfile` used for building the image which powers all of StarOpenSource's CI/CD pipelines.
## Why the special image?
We want to use Arch Linux for running pipelines. This docker image uses `ghcr.io/archlinux/archlinux` as it's base and installs `git` and `nodejs` on top.