removed arm64 architecture
All checks were successful
CI / Build docker images (push) Successful in 6m54s
All checks were successful
CI / Build docker images (push) Successful in 6m54s
This commit is contained in:
@@ -13,7 +13,7 @@ jobs:
|
|||||||
name: Set up Docker Buildx
|
name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
with:
|
with:
|
||||||
driver: docker
|
driver: docker-container
|
||||||
-
|
-
|
||||||
name: Login to Gitea container registry
|
name: Login to Gitea container registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
@@ -26,14 +26,20 @@ jobs:
|
|||||||
uses: docker/build-push-action@v5.3.0
|
uses: docker/build-push-action@v5.3.0
|
||||||
with:
|
with:
|
||||||
context: "{{defaultContext}}:jupyter-python"
|
context: "{{defaultContext}}:jupyter-python"
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64
|
||||||
push: true
|
push: true
|
||||||
tags: gitea.woggioni.net/woggioni/jupyter-python:latest
|
tags: gitea.woggioni.net/woggioni/jupyter-python:latest
|
||||||
|
cache-from: type=registry,ref=gitea.woggioni.net/woggioni/jupyter-python:buildx
|
||||||
|
cache-to: type=registry,mode=max,compression=zstd,image-manifest=true,oci-mediatypes=true,ref=gitea.woggioni.net/woggioni/jupyter-python:buildx
|
||||||
|
|
||||||
-
|
-
|
||||||
name: Build and push jupyter-ganymede image
|
name: Build and push jupyter-ganymede image
|
||||||
uses: docker/build-push-action@v5.3.0
|
uses: docker/build-push-action@v5.3.0
|
||||||
with:
|
with:
|
||||||
context: "{{defaultContext}}:jupyter-ganymede"
|
context: "{{defaultContext}}:jupyter-ganymede"
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64
|
||||||
push: true
|
push: true
|
||||||
tags: gitea.woggioni.net/woggioni/jupyter-ganymede:latest
|
tags: gitea.woggioni.net/woggioni/jupyter-ganymede:latest
|
||||||
|
cache-from: type=registry,ref=gitea.woggioni.net/woggioni/jupyter-ganymede:buildx
|
||||||
|
cache-to: type=registry,mode=max,compression=zstd,image-manifest=true,oci-mediatypes=true,ref=gitea.woggioni.net/woggioni/jupyter-ganymede:buildx
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
FROM alpine:3.19 AS build
|
FROM alpine:3.19 AS build
|
||||||
RUN --mount=type=cache,target=/var/cache/apk/,sharing=locked \
|
RUN --mount=type=cache,target=/var/cache/apk/,sharing=locked \
|
||||||
apk update &&\
|
apk update &&\
|
||||||
apk add python3 python3-dev pipx gcc g++ musl-dev linux-headers libffi-dev cargo
|
apk add python3 python3-dev pipx gcc g++ musl-dev linux-headers libffi-dev cargo cmake autoconf
|
||||||
RUN adduser jovyan -u 1000 --system -s /bin/sh -h /home/jovyan
|
RUN adduser jovyan -u 1000 --system -s /bin/sh -h /home/jovyan
|
||||||
USER jovyan
|
USER jovyan
|
||||||
WORKDIR /home/jovyan
|
WORKDIR /home/jovyan
|
||||||
|
Reference in New Issue
Block a user