Skip to content

Commit

Permalink
Debug package install
Browse files Browse the repository at this point in the history
  • Loading branch information
bastienwirtz committed Apr 22, 2024
1 parent 9c537fb commit 8326eba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 8326eba

Please sign in to comment.