We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bdaa4b commit 327500cCopy full SHA for 327500c
Dockerfile
@@ -6,4 +6,7 @@ RUN npm install
6
COPY . ./
7
RUN npm run build
8
9
-EXPOSE 3000
+# 빌드된 정적 파일을 호스트 서버의 `/var/www/html`로 복사
10
+FROM alpine:latest
11
+WORKDIR /app
12
+COPY --from=build /app/dist /var/www/html
0 commit comments