Compare commits

..

No commits in common. "155467bbbf16b6e0c21d725b788b6ce52eed2482" and "9beaa32cdfddcc475180fc022217cae5c2ba1887" have entirely different histories.

3 changed files with 4 additions and 4 deletions

View file

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

View file

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

View file

@ -1,5 +1,5 @@
# actions-docker # actions-docker
This repository contains the `Dockerfile` used for building the image which powers all of StarOpenSource's CI/CD pipelines. This repository contains the `Dockerfile` used for building the image which powers all of StarOpenSource's action pipelines.
## Why the special image? ## 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. 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.