Compare commits
3 commits
1a8e079767
...
ebf62cdacd
Author | SHA1 | Date | |
---|---|---|---|
ebf62cdacd | |||
a7a47e2874 | |||
7269891ddd |
3 changed files with 16 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
||||||
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 actions 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/raw/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=""
|
||||||
LABEL org.opencontainers.image.source="https://git.staropensource.de/StarOpenSource/actions-docker"
|
LABEL org.opencontainers.image.source="https://git.staropensource.de/StarOpenSource/actions-docker"
|
||||||
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later"
|
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later"
|
||||||
|
|
4
Dockerfile.java
Normal file
4
Dockerfile.java
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
FROM git.staropensource.de/staropensource/actions-docker:latest
|
||||||
|
|
||||||
|
# Install latest OpenJDK release
|
||||||
|
RUN pacman -S --noconfirm jdk-openjdk
|
10
Makefile
Normal file
10
Makefile
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
help:
|
||||||
|
@echo "make help Displays help"
|
||||||
|
@echo " build Builds the image"
|
||||||
|
@echo " upload Builds and uploads the image"
|
||||||
|
build:
|
||||||
|
docker buildx build -t git.staropensource.de/staropensource/actions-docker:latest -f Dockerfile .
|
||||||
|
docker buildx build -t git.staropensource.de/staropensource/actions-docker:java -f Dockerfile.java .
|
||||||
|
upload: build
|
||||||
|
docker push git.staropensource.de/staropensource/actions-docker:latest
|
||||||
|
docker push git.staropensource.de/staropensource/actions-docker:java
|
Loading…
Reference in a new issue