Fix: GameDig widget missing lib (#1811)

pull/1820/head^2
fredodiable 9 months ago committed by GitHub
parent af43b62e2f
commit 583494f27a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,6 +16,7 @@
**/compose*
**/Dockerfile*
**/node_modules
!**/node_modules/.pnpm/compressjs@*/**
**/npm-debug.log
**/obj
**/secrets.dev.yaml

@ -52,6 +52,8 @@ COPY --link --chown=1000:1000 /public ./public/
# Copy files from builder
COPY --link --from=builder --chown=1000:1000 /app/.next/standalone ./
COPY --link --from=builder --chown=1000:1000 /app/.next/static/ ./.next/static/
# see https://github.com/benphelps/homepage/issues/1795
COPY --link --from=builder /app/node_modules/.pnpm/compressjs@1.0.3/node_modules/compressjs/lib/ ./node_modules/.pnpm/compressjs@1.0.3/node_modules/compressjs/lib/
COPY --link --chmod=755 docker-entrypoint.sh /usr/local/bin/
RUN apk add --no-cache su-exec

Loading…
Cancel
Save