Skip to content

Commit

Permalink
Fix deploy-web Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Redm4x committed Mar 28, 2024
1 parent 83a8516 commit ab3fa44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy-web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:18-alpine3.18 AS base
FROM node:18 AS base
# Pinned to 3.18 to avoid this issue: https://github.com/nodejs/docker-node/issues/2009

# Install dependencies only when needed
FROM base AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
#RUN apk add --no-cache libc6-compat
WORKDIR /app

# Install dependencies based on the preferred package manager
Expand Down

0 comments on commit ab3fa44

Please sign in to comment.