Skip to content

Commit

Permalink
Fix: dockerfile error 2
Browse files Browse the repository at this point in the history
  • Loading branch information
kmc7468 committed Nov 26, 2024
1 parent b3bad23 commit d7ae501
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,7 +1,7 @@
#
# First stage: build the app
#
FROM node:18-alpine as builder
FROM node:18-alpine AS builder

WORKDIR /usr/src/app

Expand All @@ -23,7 +23,7 @@ FROM node:18-alpine

WORKDIR /usr/src/app

COPY --from=builder /usr/src/app/dist .
COPY --from=builder /usr/src/app/dist dist

# Run container
EXPOSE 80
Expand Down

0 comments on commit d7ae501

Please sign in to comment.