Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: GameDig widget missing lib #1811

Merged
merged 19 commits into from
Aug 15, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Edited docker file
  • Loading branch information
fredodiable committed Aug 14, 2023
commit 4e90de5467eef27de7003c411541c476f9e460e7
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ WORKDIR /app
# Copy files from context (this allows the files to copy before the builder stage is done).
COPY --link --chown=1000:1000 package.json next.config.js ./
COPY --link --chown=1000:1000 /public ./public/
COPY --link /node_modules/.pnpm/[email protected]/node_modules/compressjs/lib/ ./node_modules/.pnpm/[email protected]/node_modules/compressjs/lib/
COPY --link /node_modules/.pnpm/[email protected]/node_modules/compressjs/lib/ /app/node_modules/.pnpm/[email protected]/node_modules/compressjs/lib/

# Copy files from builder
COPY --link --from=builder --chown=1000:1000 /app/.next/standalone ./
Expand Down
Loading