diff --git a/.gitea/workflows/merge-master-tag-deploy.yaml b/.gitea/workflows/merge-master-tag-deploy.yaml index eddc478..2fe4bb8 100644 --- a/.gitea/workflows/merge-master-tag-deploy.yaml +++ b/.gitea/workflows/merge-master-tag-deploy.yaml @@ -19,6 +19,9 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + - name: Available platforms + run: echo ${{ steps.buildx.outputs.platforms }} + - name: Setup Node uses: actions/setup-node@v4 with: diff --git a/Dockerfile b/Dockerfile index 2954a9b..95d9885 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ RUN apk add --no-cache libc6-compat WORKDIR /app COPY package.json yarn.lock ./ RUN yarn config set network-timeout 100000 -RUN apk add g++ make py3-pip -RUN yarn global add node-gyp +#RUN apk add g++ make py3-pip +#RUN yarn global add node-gyp RUN yarn install # Rebuild the source code only when needed