Skip to content

Commit

Permalink
//
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkan1 committed Jun 29, 2024
1 parent 36cd15b commit fd98e04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plywood/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12.18.3-alpine as frontend-builder
FROM node:14.5.0-alpine as frontend-builder
ARG version
RUN apk update
RUN apk add git
Expand All @@ -17,7 +17,7 @@ RUN echo "Now build server"
RUN npm install
RUN npm run build

FROM node:12.18.3-alpine
FROM node:14.5.0-alpine
RUN addgroup -S plywood && adduser -S plywood
COPY --from=frontend-builder --chown=plywood /app/dist/ /app/dist/
COPY --from=frontend-builder --chown=plywood /app/node_modules/ /app/node_modules/
Expand Down

0 comments on commit fd98e04

Please # to comment.