mirror of
https://github.com/dockersrc/alpine
synced 2026-01-22 04:34:34 -05:00
Some checks failed
alpine-3-16 / build-and-push (push) Failing after 25s
alpine-3-14 / build-and-push (push) Failing after 1m42s
alpine-3-15 / build-and-push (push) Failing after 1m44s
alpine-3-17 / build-and-push (push) Failing after 1m32s
alpine-3-18 / build-and-push (push) Failing after 1m11s
alpine-3-19 / build-and-push (push) Failing after 1m1s
alpine-3-21 / build-and-push (push) Failing after 51s
alpine-3-22 / build-and-push (push) Failing after 54s
alpine-3-20 / build-and-push (push) Failing after 1m38s
alpine-edge / build-and-push (push) Failing after 1m18s
alpine / build-and-push (push) Failing after 1m1s
.gitea/workflows/docker.3.14.yaml .gitea/workflows/docker.3.15.yaml .gitea/workflows/docker.3.16.yaml .gitea/workflows/docker.3.17.yaml .gitea/workflows/docker.3.18.yaml .gitea/workflows/docker.3.19.yaml .gitea/workflows/docker.3.20.yaml .gitea/workflows/docker.3.21.yaml .gitea/workflows/docker.3.22.yaml .gitea/workflows/docker.edge.yaml .gitea/workflows/docker.yaml .github/workflows/docker.3.14.yaml .github/workflows/docker.3.15.yaml .github/workflows/docker.3.16.yaml .github/workflows/docker.3.17.yaml .github/workflows/docker.3.18.yaml .github/workflows/docker.3.19.yaml .github/workflows/docker.3.20.yaml .github/workflows/docker.3.21.yaml .github/workflows/docker.3.22.yaml .github/workflows/docker.edge.yaml .github/workflows/docker.yaml
86 lines
2.8 KiB
YAML
86 lines
2.8 KiB
YAML
name: alpine-3-17
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
schedule:
|
|
- cron: '0 2 2 * *'
|
|
|
|
jobs:
|
|
build-and-push:
|
|
runs-on: act_runner
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
env:
|
|
RUNNER_TOOL_CACHE: /toolcache
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Get Meta
|
|
id: meta
|
|
run: |
|
|
echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT
|
|
echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT
|
|
echo "COMMIT_ID=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
registry: docker.io
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile.3.17
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64
|
|
push: true
|
|
provenance: false
|
|
build-args: |
|
|
IMAGE_NAME=alpine
|
|
IMAGE_VERSION=3.17
|
|
IMAGE_REPO=casjaysdev/alpine
|
|
PHP_SERVER=alpine
|
|
BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }}
|
|
BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }}
|
|
PULL_URL=alpine
|
|
DISTRO_VERSION=${IMAGE_VERSION}
|
|
CONTAINER_VERSION=
|
|
TIMEZONE=America/New_York
|
|
LANGUAGE=en_US.UTF-8
|
|
PHP_VERSION=system
|
|
NODE_VERSION=system
|
|
NODE_MANAGER=system
|
|
SERVICE_PORT=
|
|
EXPOSE_PORTS=
|
|
WWW_ROOT_DIR=/usr/local/share/httpd/default
|
|
DEFAULT_FILE_DIR=/usr/local/share/template-files
|
|
DEFAULT_DATA_DIR=/usr/local/share/template-files/data
|
|
DEFAULT_CONF_DIR=/usr/local/share/template-files/config
|
|
DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults
|
|
annotations: |
|
|
org.opencontainers.image.title=casjaysdev/alpine
|
|
org.opencontainers.image.description=Containerized version of casjaysdev/alpine
|
|
org.opencontainers.image.vendor=CasjaysDev
|
|
org.opencontainers.image.authors=CasjaysDev <docker-admin@casjaysdev.pro>
|
|
org.opencontainers.image.url=https://github.com/${{ github.repository }}
|
|
org.opencontainers.image.source=https://github.com/${{ github.repository }}
|
|
org.opencontainers.image.version=3.17
|
|
org.opencontainers.image.revision=${{ github.sha }}
|
|
org.opencontainers.image.created=${{ github.event.head_commit.timestamp }}
|
|
tags: |
|
|
docker.io/casjaysdev/alpine:3.17
|