Skip to content

Commit

Permalink
Merge pull request #271 from Vizzuality/update-docker-config-node-ver…
Browse files Browse the repository at this point in the history
…sion

Match docker config node js versions
  • Loading branch information
SARodrigues authored Jun 20, 2024
2 parents 078c6c9 + 9b6e421 commit f370a80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN yarn install
# RUN npm ci

# Rebuild the source code only when needed
FROM node:18.15-bullseye AS builder
FROM node:18.17-bullseye AS builder
WORKDIR /app
COPY . .
COPY --from=deps /app/node_modules ./node_modules
Expand All @@ -26,7 +26,7 @@ ENV NEXT_TELEMETRY_DISABLED 1
RUN yarn build

# Production image, copy all the files and run next
FROM node:18.15-bullseye AS runner
FROM node:18.17-bullseye AS runner
WORKDIR /app

ENV NODE_ENV production
Expand Down

0 comments on commit f370a80

Please sign in to comment.