Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
study2895 committed Nov 4, 2024
2 parents f46aade + f397413 commit 58a3759
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 58a3759

Please sign in to comment.