From aba3190c559c83cf8f9b1c1e31ed1a506ed33b87 Mon Sep 17 00:00:00 2001 From: Humberto Dias Date: Sun, 10 Mar 2024 23:11:21 -0300 Subject: [PATCH 1/3] Update deploy-docker.yaml --- .github/workflows/deploy-docker.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-docker.yaml b/.github/workflows/deploy-docker.yaml index 9fca0fb5..09fc3d52 100644 --- a/.github/workflows/deploy-docker.yaml +++ b/.github/workflows/deploy-docker.yaml @@ -20,9 +20,9 @@ jobs: matrix: platform: - linux/amd64 - - linux/386 +# - linux/386 # - linux/arm/v7 - - linux/arm64/v8 +# - linux/arm64/v8 # - linux/ppc64le # - linux/s390x From 1fb228923fc04efc78f330cd64220f3e9edb20f3 Mon Sep 17 00:00:00 2001 From: Humberto Dias Date: Mon, 11 Mar 2024 01:27:08 -0300 Subject: [PATCH 2/3] Update Dockerfile --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6fb66a2f..fe0d9db4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,9 +29,8 @@ RUN \ pyenv global $PYTHON_VERSION && \ pyenv rehash && \ # pyenv - apt -y clean autoclean autoremove && \ - rm -rf /var/lib/{apt,dpkg,cache,log} - + apt -y clean autoclean autoremove + RUN mkdir /build WORKDIR /build COPY . /build From c07bfc4747d7b48b08ede54d5ceafee6becbe4cc Mon Sep 17 00:00:00 2001 From: Humberto Dias Date: Mon, 11 Mar 2024 02:02:37 -0300 Subject: [PATCH 3/3] add PATH=/portlibs/ppu/bin --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fe0d9db4..1ef62602 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ SHELL ["/bin/bash", "-c"] ENV PS3DEV /usr/local/ps3dev ENV PSL1GHT ${PS3DEV} -ENV PATH ${PATH}:${PS3DEV}/bin:${PS3DEV}/ppu/bin:${PS3DEV}/spu/bin +ENV PATH ${PATH}:${PS3DEV}/bin:${PS3DEV}/ppu/bin:${PS3DEV}/spu/bin:${PS3DEV}/portlibs/ppu/bin ENV PKG_CONFIG_PATH $PS3DEV/portlibs/ppu/lib/pkgconfig ENV DEBIAN_FRONTEND=noninteractive