]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
Debug package install
authorBastien Wirtz <bastien.wirtz@gmail.com>
Mon, 11 Mar 2024 13:35:13 +0000 (14:35 +0100)
committerBastien Wirtz <bastien.wirtz@gmail.com>
Mon, 22 Apr 2024 12:44:21 +0000 (14:44 +0200)
.github/workflows/dockerhub.yml
Dockerfile

index 4043a2c4f1bc6ed91ed1a24fc6277f978827d63b..893b39ff8343211b6c9cc2b3aa1e4f700d72dbb0 100644 (file)
@@ -21,6 +21,8 @@ jobs:
         name: Set up Docker Buildx
         id: buildx
         uses: docker/setup-buildx-action@v3
+        with:
+          buildkitd-flags: --debug
       -
         name: Login to Docker Hub
         uses: docker/login-action@v2
index 58d08dcf5207d0a19a16ec8c41d574420667f127..e478a5af3b9b98e1add9779530ee15cbb4e73cd4 100644 (file)
@@ -1,16 +1,16 @@
 # build stage
-FROM node:lts-alpine3.19 as build-stage
+FROM node:lts-alpine3.18 as build-stage
 
 WORKDIR /app
 
 COPY package.json ./
-RUN yarn install --frozen-lockfile --non-interactive
+RUN yarn install --no-cache --frozen-lockfile --non-interactive
 
 COPY . .
 RUN yarn build
 
 # production stage
-FROM alpine:3.19
+FROM alpine:3.18
 
 ENV GID 1000
 ENV UID 1000