Skip to content

Commit

Permalink
fix: revert base image
Browse files Browse the repository at this point in the history
  • Loading branch information
wokim committed Apr 23, 2024
1 parent 6310a54 commit 9b80c96
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,4 +1,4 @@
FROM node:18-alpine as build
FROM node:18 as build

WORKDIR /app
COPY package*.json ./
Expand All @@ -8,7 +8,7 @@ RUN npm ci
COPY . .
RUN npm run build

FROM node:18-alpine as release
FROM node:18 as release

WORKDIR /app
COPY --from=build /app/dist ./dist
Expand Down

0 comments on commit 9b80c96

Please sign in to comment.