Skip to content

Commit 77d25d7

Browse files
authored
Add yarn install step to development Docker file (#535)
1 parent 4a491a7 commit 77d25d7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

frontend/Dockerfile.ssr.dev

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
FROM node:alpine
1+
FROM node:23-alpine
22

33
WORKDIR /app
44

5-
COPY ./package.json ./yarn.lock ./
6-
7-
RUN yarn install
5+
COPY package.json yarn.lock ./
6+
RUN yarn install --frozen-lockfile
87

98
COPY . ./
109

0 commit comments

Comments
 (0)