Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Minn-Choi authored Nov 4, 2024
1 parent 2de568c commit f397413
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
Expand Up @@ -5,8 +5,8 @@ RUN npm install
COPY . .
RUN npm run build

# nginx ์„ค์ •
# Nginx ์„ค์ •
FROM nginx:alpine
COPY --from=build-stage /app/dist /usr/share/nginx/html # ์—ฌ๊ธฐ์„œ ํ•˜์ดํ”ˆ์„ ์‚ฌ์šฉ
COPY --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

0 comments on commit f397413

Please sign in to comment.