Skip to content

Commit

Permalink
Merge pull request #22 from Mogyuchi/pin-node-18.18.2
Browse files Browse the repository at this point in the history
Pin to Node.js 18.18.2
  • Loading branch information
cm-ayf authored Dec 7, 2023
2 parents d3df225 + 6d0be34 commit df6e589
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# syntax=docker/dockerfile:1

FROM node:18 AS deps
FROM node:18.18.2 AS deps
ARG NODE_ENV=production
WORKDIR /app
COPY ./package*.json ./
RUN npm ci

FROM node:18 AS builder
FROM node:18.18.2 AS builder
ARG NODE_ENV=development
WORKDIR /app
COPY ./build.js ./
Expand Down

0 comments on commit df6e589

Please sign in to comment.