Skip to content

Commit 4e1ebda

Browse files
committed
Fixed browserslist issue
1 parent d0d83c1 commit 4e1ebda

File tree

3 files changed

+3
-11251
lines changed

3 files changed

+3
-11251
lines changed

client/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Build Phase.
2-
FROM node:alpine as builder
3-
WORKDIR '/app'
2+
FROM node:alpine
3+
WORKDIR "/app"
44
COPY ./package.json ./
55
RUN npm install
66
COPY . .
@@ -10,4 +10,4 @@ RUN npm run build
1010
FROM nginx
1111
EXPOSE 3000
1212
COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf
13-
COPY --from=builder /app/build /usr/share/nginx/html
13+
COPY --from=0 /app/build /usr/share/nginx/html

0 commit comments

Comments
 (0)