Skip to content

Commit 5838b8c

Browse files
authored
Update Dockerfile
1 parent 26712b2 commit 5838b8c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM node:lts as builder
1+
FROM node:lts AS builder
22
WORKDIR /app
3-
COPY . .
3+
COPY ..
44
RUN npm ci
55
RUN npm run build
66
RUN npm run build-storybook -- -o dist/storybook
77

88
FROM nginx
99
COPY nginx-default.conf /etc/nginx/conf.d/default.conf
10-
COPY --from=build /app/dist /usr/share/nginx/html
10+
COPY --from=builder /app/dist /usr/share/nginx/html

0 commit comments

Comments
 (0)