Skip to content

Commit

Permalink
Fixes [stage]
Browse files Browse the repository at this point in the history
  • Loading branch information
crschnick committed Jan 3, 2025
1 parent 38ceac5 commit 79e1335
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ jobs:
latest=${{ contains(github.event.head_commit.message, '[release]') == true }}
tags: |
type=raw,value=${{ env.XPIPE_TAG }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Setup buildx
uses: docker/setup-buildx-action@v1
with:
platforms: linux/amd64,linux/arm64
- name: Build and push Docker image
id: push
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ARG BASE_IMAGE_TAG
ENV BASE_IMAGE_TAG=""
FROM scratch AS base

FROM base AS build-arm64
ARG BASE_IMAGE_TAG=arm64v8-ubuntunoble
ENV BASE_IMAGE_TAG="arm64v8-ubuntunoble"

FROM base AS build-amd64
ARG BASE_IMAGE_TAG=ubuntunoble
ENV BASE_IMAGE_TAG="ubuntunoble"

FROM ghcr.io/linuxserver/baseimage-kasmvnc:${BASE_IMAGE_TAG}

Expand Down

0 comments on commit 79e1335

Please sign in to comment.