mirror of
https://github.com/bastienwirtz/homer.git
synced 2025-06-25 20:21:30 +02:00
Debug package install
This commit is contained in:
parent
9c537fb926
commit
8326eba25f
2
.github/workflows/dockerhub.yml
vendored
2
.github/workflows/dockerhub.yml
vendored
@ -21,6 +21,8 @@ jobs:
|
|||||||
name: Set up Docker Buildx
|
name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
with:
|
||||||
|
buildkitd-flags: --debug
|
||||||
-
|
-
|
||||||
name: Login to Docker Hub
|
name: Login to Docker Hub
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
# build stage
|
# build stage
|
||||||
FROM node:lts-alpine3.19 as build-stage
|
FROM node:lts-alpine3.18 as build-stage
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY package.json ./
|
COPY package.json ./
|
||||||
RUN yarn install --frozen-lockfile --non-interactive
|
RUN yarn install --no-cache --frozen-lockfile --non-interactive
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
|
||||||
# production stage
|
# production stage
|
||||||
FROM alpine:3.19
|
FROM alpine:3.18
|
||||||
|
|
||||||
ENV GID 1000
|
ENV GID 1000
|
||||||
ENV UID 1000
|
ENV UID 1000
|
||||||
|
Loading…
x
Reference in New Issue
Block a user