Compare commits
13 Commits
verbose-do
...
master
Author | SHA1 | Date | |
---|---|---|---|
56e49fe154
|
|||
2886391c5b
|
|||
c02a37725c
|
|||
f3523a2cd3
|
|||
925b8d281d
|
|||
65341e4b84
|
|||
bbb718ab30
|
|||
5b5b9c4cc3
|
|||
2785dbcd3d
|
|||
549fcb94b6
|
|||
e10c7022fb
|
|||
04e4a5093c | |||
f035df06a1 |
@@ -2,9 +2,11 @@ name: Docker Image CI
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
branches: [ main ]
|
branches: [ master ]
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 5 * * 3'
|
- cron: '0 5 * * 3'
|
||||||
|
|
||||||
@@ -18,11 +20,12 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
images:
|
images:
|
||||||
[
|
[
|
||||||
devel,
|
base-devel,
|
||||||
openrc,
|
base-openrc,
|
||||||
runit,
|
base-runit,
|
||||||
s6,
|
base-s6,
|
||||||
dinit
|
base-dinit,
|
||||||
|
base
|
||||||
]
|
]
|
||||||
env:
|
env:
|
||||||
REGISTRY: gitea.artixlinux.org
|
REGISTRY: gitea.artixlinux.org
|
||||||
@@ -40,25 +43,27 @@ jobs:
|
|||||||
uses: https://github.com/actions/checkout@v4
|
uses: https://github.com/actions/checkout@v4
|
||||||
- name: Set up docker
|
- name: Set up docker
|
||||||
run: curl -fsSL https://get.docker.com | sh
|
run: curl -fsSL https://get.docker.com | sh
|
||||||
|
# - name: Set up Docker Buildx
|
||||||
|
# id: buildx
|
||||||
|
# uses: docker/setup-buildx-action@v2
|
||||||
|
# with:
|
||||||
|
# install: true
|
||||||
|
- name: Define metadata variables
|
||||||
|
run: |
|
||||||
|
sed -i "s/ARG version=.*/ARG version=$(date +'%Y%m%d').0.${{ gitea.sha }}/" Dockerfile
|
||||||
|
sed -i "s/ARG githash=.*/ARG githash=${{ gitea.sha }}/" Dockerfile
|
||||||
|
sed -i "s/ARG created=.*/ARG created=$(date -u +'%Y-%m-%dT%H:%M:%S%:z')/" Dockerfile
|
||||||
|
cat Dockerfile
|
||||||
- name: Build Docker image
|
- name: Build Docker image
|
||||||
uses: https://github.com/docker/build-push-action@v5
|
uses: https://github.com/docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
push: false
|
push: false
|
||||||
pull: true
|
pull: true
|
||||||
|
no-cache: true
|
||||||
context: .
|
context: .
|
||||||
build-args: |
|
build-args: |
|
||||||
img=${{ matrix.images }}
|
img=${{ matrix.images }}
|
||||||
tags: "${{ env.ABSOLUTE_IMAGE }}:base-${{ matrix.images }},${{ env.ABSOLUTE_DH_IMAGE }}:${{ matrix.images }}"
|
tags: "${{ env.ABSOLUTE_IMAGE }}:${{ matrix.images }},${{ env.ABSOLUTE_DH_IMAGE }}:${{ matrix.images }},${{ env.ABSOLUTE_IMAGE }}:latest,${{ env.ABSOLUTE_DH_IMAGE }}:latest"
|
||||||
- name: Create latest tag
|
|
||||||
if: matrix.images == 'devel'
|
|
||||||
uses: https://github.com/docker/build-push-action@v5
|
|
||||||
with:
|
|
||||||
push: false
|
|
||||||
pull: true
|
|
||||||
context: .
|
|
||||||
build-args: |
|
|
||||||
img=${{ matrix.images }}
|
|
||||||
tags: "${{ env.ABSOLUTE_IMAGE }}:latest,${{ env.ABSOLUTE_DH_IMAGE }}:latest"
|
|
||||||
- name: Log in to the Container registry
|
- name: Log in to the Container registry
|
||||||
uses: https://github.com/docker/login-action@v2
|
uses: https://github.com/docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
@@ -66,10 +71,10 @@ jobs:
|
|||||||
username: ${{ gitea.actor }}
|
username: ${{ gitea.actor }}
|
||||||
password: ${{ secrets.PAT }}
|
password: ${{ secrets.PAT }}
|
||||||
- name: Push to Gitea
|
- name: Push to Gitea
|
||||||
if: gitea.event_name == 'push' || gitea.event_name == 'schedule'
|
if: github.ref == 'refs/heads/master' && ( gitea.event_name == 'push' || gitea.event_name == 'schedule' )
|
||||||
run: docker push "${{ env.ABSOLUTE_IMAGE }}:base-${{ matrix.images }}"
|
run: docker push "${{ env.ABSOLUTE_IMAGE }}:${{ matrix.images }}"
|
||||||
- name: Push latest tag
|
- name: Push latest tag
|
||||||
if: ( gitea.event_name == 'push' || gitea.event_name == 'schedule' ) && matrix.images == 'devel'
|
if: ( github.ref == 'refs/heads/master' && ( gitea.event_name == 'push' || gitea.event_name == 'schedule' ) ) && matrix.images == 'base'
|
||||||
run: docker push "${{ env.ABSOLUTE_IMAGE }}:latest"
|
run: docker push "${{ env.ABSOLUTE_IMAGE }}:latest"
|
||||||
- name: Log in to the Docker Hub
|
- name: Log in to the Docker Hub
|
||||||
uses: https://github.com/docker/login-action@v2
|
uses: https://github.com/docker/login-action@v2
|
||||||
@@ -78,8 +83,8 @@ jobs:
|
|||||||
username: ${{ secrets.DOCKERHUB_USER }}
|
username: ${{ secrets.DOCKERHUB_USER }}
|
||||||
password: ${{ secrets.DOCKERHUB }}
|
password: ${{ secrets.DOCKERHUB }}
|
||||||
- name: Push to Docker Hub
|
- name: Push to Docker Hub
|
||||||
if: gitea.event_name == 'push' || gitea.event_name == 'schedule'
|
if: github.ref == 'refs/heads/master' && ( gitea.event_name == 'push' || gitea.event_name == 'schedule' )
|
||||||
run: docker push "${{ env.ABSOLUTE_DH_IMAGE }}:${{ matrix.images }}"
|
run: docker push "${{ env.ABSOLUTE_DH_IMAGE }}:${{ matrix.images }}"
|
||||||
- name: Push latest tag
|
- name: Push latest tag
|
||||||
if: ( gitea.event_name == 'push' || gitea.event_name == 'schedule' ) && matrix.images == 'devel'
|
if: ( github.ref == 'refs/heads/master' && ( gitea.event_name == 'push' || gitea.event_name == 'schedule' ) ) && matrix.images == 'base'
|
||||||
run: docker push "${{ env.ABSOLUTE_DH_IMAGE }}:latest"
|
run: docker push "${{ env.ABSOLUTE_DH_IMAGE }}:latest"
|
34
Dockerfile
34
Dockerfile
@@ -1,25 +1,39 @@
|
|||||||
FROM gitea.artixlinux.org/artixdocker/artixlinux:latest as base
|
FROM artixlinux/artixlinux:latest AS build
|
||||||
|
|
||||||
|
WORKDIR /usr/artixlinux-docker
|
||||||
RUN pacman -Syu --noconfirm && \
|
RUN pacman -Syu --noconfirm && \
|
||||||
pacman -Sy --noconfirm artools curl make fakechroot fakeroot
|
pacman -Sy --noconfirm artools curl make fakechroot fakeroot
|
||||||
WORKDIR /usr/artixlinux-docker
|
ARG img=base-devel
|
||||||
COPY . .
|
COPY . .
|
||||||
|
RUN make "dockerfile-${img}"
|
||||||
FROM base as build
|
|
||||||
WORKDIR /usr/artixlinux-docker
|
|
||||||
ARG img=devel
|
|
||||||
RUN make "dockerfile-base-${img}"
|
|
||||||
WORKDIR /usr/artixlinux-docker/output
|
WORKDIR /usr/artixlinux-docker/output
|
||||||
RUN ROOTFS=base-${img}.tar.zst && \
|
COPY . .
|
||||||
sha256sum -c base-${img}.tar.zst.SHA256 && \
|
RUN ROOTFS=${img}.tar.zst && \
|
||||||
|
sha256sum -c ${img}.tar.zst.SHA256 && \
|
||||||
mkdir /rootfs && \
|
mkdir /rootfs && \
|
||||||
tar -C /rootfs --extract --file "${ROOTFS}"
|
tar -C /rootfs --extract --file "${ROOTFS}"
|
||||||
|
|
||||||
FROM scratch AS root
|
FROM scratch AS root
|
||||||
|
ARG img=base-devel
|
||||||
|
ARG version=VERSION
|
||||||
|
ARG githash=REVISION
|
||||||
|
ARG created=CREATED
|
||||||
|
LABEL org.opencontainers.image.title="Artix Linux ${img} Image"
|
||||||
|
LABEL org.opencontainers.image.description="Official containerd image of Artix Linux, a fork of Arch Linux that respects init freedom."
|
||||||
|
LABEL org.opencontainers.image.vendor="Artix Linux"
|
||||||
|
LABEL org.opencontainers.image.authors="Cory Sanin <corysanin@artixlinux.org>, artoo <artoo@artixlinux.org>, Chris Cromer <cromer@artixlinux.org>"
|
||||||
|
LABEL org.opencontainers.image.url="https://gitea.artixlinux.org/artixdocker"
|
||||||
|
LABEL org.opencontainers.image.documentation="https://wiki.artixlinux.org/"
|
||||||
|
LABEL org.opencontainers.image.source="https://gitea.artixlinux.org/artixdocker/artixlinux-docker"
|
||||||
|
LABEL org.opencontainers.image.licenses="GPL-3.0-or-later"
|
||||||
|
LABEL org.opencontainers.image.version="${version}"
|
||||||
|
LABEL org.opencontainers.image.revision="${githash}"
|
||||||
|
LABEL org.opencontainers.image.created="${created}"
|
||||||
|
|
||||||
COPY --from=build /rootfs/ /
|
COPY --from=build /rootfs/ /
|
||||||
|
|
||||||
RUN ldconfig && \
|
RUN ldconfig && \
|
||||||
sed -i '/BUILD_ID/a VERSION_ID=TEMPLATE_VERSION_ID' /etc/os-release
|
sed -i "/BUILD_ID/a VERSION_ID=${version}" /etc/os-release
|
||||||
|
|
||||||
ENV LANG=C.UTF-8
|
ENV LANG=C.UTF-8
|
||||||
CMD ["/usr/bin/bash"]
|
CMD ["/usr/bin/bash"]
|
15
Makefile
15
Makefile
@@ -25,6 +25,8 @@ define rootfs
|
|||||||
|
|
||||||
fakechroot fakeroot chroot $(BUILDDIR) sh -c 'pacman-key --init && pacman-key --populate && rm -rf etc/pacman.d/gnupg/{openpgp-revocs.d/,private-keys-v1.d/,pubring.gpg~,gnupg.S.}*'
|
fakechroot fakeroot chroot $(BUILDDIR) sh -c 'pacman-key --init && pacman-key --populate && rm -rf etc/pacman.d/gnupg/{openpgp-revocs.d/,private-keys-v1.d/,pubring.gpg~,gnupg.S.}*'
|
||||||
|
|
||||||
|
fakechroot fakeroot chroot $(BUILDDIR) /usr/bin/esysusers --root "/"
|
||||||
|
|
||||||
ln -fs /usr/lib/os-release $(BUILDDIR)/etc/os-release
|
ln -fs /usr/lib/os-release $(BUILDDIR)/etc/os-release
|
||||||
|
|
||||||
# add system users
|
# add system users
|
||||||
@@ -53,6 +55,9 @@ endef
|
|||||||
clean:
|
clean:
|
||||||
rm -rf $(BUILDDIR) $(OUTPUTDIR)
|
rm -rf $(BUILDDIR) $(OUTPUTDIR)
|
||||||
|
|
||||||
|
$(OUTPUTDIR)/base.tar.zst:
|
||||||
|
$(call rootfs,base,base)
|
||||||
|
|
||||||
$(OUTPUTDIR)/base-openrc.tar.zst:
|
$(OUTPUTDIR)/base-openrc.tar.zst:
|
||||||
$(call rootfs,base-openrc,base,elogind-openrc)
|
$(call rootfs,base-openrc,base,elogind-openrc)
|
||||||
|
|
||||||
@@ -65,6 +70,9 @@ $(OUTPUTDIR)/base-s6.tar.zst:
|
|||||||
$(OUTPUTDIR)/base-dinit.tar.zst:
|
$(OUTPUTDIR)/base-dinit.tar.zst:
|
||||||
$(call rootfs,base-dinit,base,elogind-dinit)
|
$(call rootfs,base-dinit,base,elogind-dinit)
|
||||||
|
|
||||||
|
$(OUTPUTDIR)/Dockerfile.base: $(OUTPUTDIR)/base.tar.zst
|
||||||
|
$(call dockerfile,base)
|
||||||
|
|
||||||
$(OUTPUTDIR)/Dockerfile.base-openrc: $(OUTPUTDIR)/base-openrc.tar.zst
|
$(OUTPUTDIR)/Dockerfile.base-openrc: $(OUTPUTDIR)/base-openrc.tar.zst
|
||||||
$(call dockerfile,base-openrc)
|
$(call dockerfile,base-openrc)
|
||||||
|
|
||||||
@@ -95,6 +103,9 @@ dockerfile-base-s6: $(OUTPUTDIR)/Dockerfile.base-s6
|
|||||||
.PHONY: docker-file-base-dinit
|
.PHONY: docker-file-base-dinit
|
||||||
dockerfile-base-dinit: $(OUTPUTDIR)/Dockerfile.base-dinit
|
dockerfile-base-dinit: $(OUTPUTDIR)/Dockerfile.base-dinit
|
||||||
|
|
||||||
|
.PHONY: docker-file-base
|
||||||
|
dockerfile-base: $(OUTPUTDIR)/Dockerfile.base
|
||||||
|
|
||||||
.PHONY: docker-file-base-devel
|
.PHONY: docker-file-base-devel
|
||||||
dockerfile-base-devel: $(OUTPUTDIR)/Dockerfile.base-devel
|
dockerfile-base-devel: $(OUTPUTDIR)/Dockerfile.base-devel
|
||||||
|
|
||||||
@@ -114,6 +125,10 @@ image-base-s6: $(OUTPUTDIR)/Dockerfile.base-s6
|
|||||||
image-base-dinit: $(OUTPUTDIR)/Dockerfile.base-dinit
|
image-base-dinit: $(OUTPUTDIR)/Dockerfile.base-dinit
|
||||||
${DOCKER} build -f $(OUTPUTDIR)/Dockerfile.base-dinit -t $(REGISTRY)/$(OWNER)/artixlinux:base-dinit $(OUTPUTDIR)
|
${DOCKER} build -f $(OUTPUTDIR)/Dockerfile.base-dinit -t $(REGISTRY)/$(OWNER)/artixlinux:base-dinit $(OUTPUTDIR)
|
||||||
|
|
||||||
|
.PHONY: docker-image-base
|
||||||
|
image-base: $(OUTPUTDIR)/Dockerfile.base
|
||||||
|
${DOCKER} build -f $(OUTPUTDIR)/Dockerfile.base -t $(REGISTRY)/$(OWNER)/artixlinux:base $(OUTPUTDIR)
|
||||||
|
|
||||||
.PHONY: docker-image-base-devel
|
.PHONY: docker-image-base-devel
|
||||||
image-base-devel: $(OUTPUTDIR)/Dockerfile.base-devel
|
image-base-devel: $(OUTPUTDIR)/Dockerfile.base-devel
|
||||||
${DOCKER} build -f $(OUTPUTDIR)/Dockerfile.base-devel -t $(REGISTRY)/$(OWNER)/artixlinux:base-devel $(OUTPUTDIR)
|
${DOCKER} build -f $(OUTPUTDIR)/Dockerfile.base-devel -t $(REGISTRY)/$(OWNER)/artixlinux:base-devel $(OUTPUTDIR)
|
||||||
|
@@ -10,11 +10,12 @@
|
|||||||
|
|
||||||
# Supported tags
|
# Supported tags
|
||||||
|
|
||||||
* latest, devel
|
* latest, base
|
||||||
* dinit
|
* base-devel
|
||||||
* openrc
|
* base-dinit
|
||||||
* runit
|
* base-openrc
|
||||||
* s6
|
* base-runit
|
||||||
|
* base-s6
|
||||||
|
|
||||||
## Dockerfile repo
|
## Dockerfile repo
|
||||||
|
|
||||||
@@ -31,8 +32,8 @@
|
|||||||
# How to run
|
# How to run
|
||||||
|
|
||||||
```
|
```
|
||||||
docker pull artixlinux/artixlinux:devel
|
docker pull artixlinux/artixlinux:base
|
||||||
docker run -it --rm artixlinux/artixlinux:devel /bin/bash
|
docker run -it --rm artixlinux/artixlinux:base /bin/bash
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that `--rm` removes the container on exit.
|
Note that `--rm` removes the container on exit.
|
Reference in New Issue
Block a user