fix/dockerfile: remove VOLUME definition #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build multiarch image - latest | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci-skip]')" | |
steps: | |
- name: Set latest tag | |
id: vars | |
run: echo "tag=latest" >> ${GITHUB_OUTPUT} | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# with: | |
# ref: ${{ steps.vars.outputs.tag }} | |
- name: Prepare | |
id: prep | |
run: | | |
BUILD_DATE=$(date --rfc-3339=seconds --utc) | |
echo "build_date=${BUILD_DATE}" >> ${GITHUB_OUTPUT} | |
PLATFORMS=amd64,arm,arm64 | |
TAGS1="quay.io/${{ github.repository_owner }}/tor:${{ steps.vars.outputs.tag }}" | |
if [ "${{github.event_name}}" == "pull_request" ]; then | |
echo "push=false" >> ${GITHUB_OUTPUT} | |
else | |
echo "push=true" >> ${GITHUB_OUTPUT} | |
echo "tags1=${TAGS1}" >> ${GITHUB_OUTPUT} | |
echo "branch=${GIT_BRANCH}" >> ${GITHUB_OUTPUT} | |
fi | |
echo "platforms=${PLATFORMS}" >> ${GITHUB_OUTPUT} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
with: | |
platforms: ${{ steps.prep.outputs.platforms }} | |
- name: Login to Quay.io | |
uses: docker/login-action@v1 | |
if: github.event_name != 'pull_request' | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_TOKEN }} | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v1 | |
with: | |
install: true | |
version: latest | |
driver-opts: image=moby/buildkit:latest | |
- name: Build and push (tor) | |
uses: docker/build-push-action@v2 | |
with: | |
labels: | | |
org.opencontainers.image.created=${{ steps.prep.outputs.build_date }} | |
builder: ${{ steps.buildx.outputs.name }} | |
context: . | |
file: Dockerfile | |
platforms: ${{ steps.prep.outputs.platforms }} | |
push: ${{ steps.prep.outputs.push }} | |
tags: ${{ steps.prep.outputs.tags1 }} |