Skip to content

Commit

Permalink
Change image
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Sarmiento committed Aug 26, 2023
1 parent 7d233fc commit 1c62a82
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,11 +1,11 @@
FROM node:16-alpine as builder
FROM node:alpine as builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build

FROM node:16-alpine as production
FROM node:alpine as production
WORKDIR /app
COPY package*.json ./
RUN npm ci
Expand Down

0 comments on commit 1c62a82

Please sign in to comment.