Compare commits
No commits in common. "7e77a67aacf3711e3e910a8003ab042d7dbad66f" and "18094fae3cfc06a037ea8d3923457767205aba6a" have entirely different histories.
7e77a67aac
...
18094fae3c
1 changed files with 5 additions and 0 deletions
|
@ -7,3 +7,8 @@ COPY package-lock.json ./
|
||||||
RUN npm ci --silent
|
RUN npm ci --silent
|
||||||
COPY . ./
|
COPY . ./
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
|
FROM nginx:latest
|
||||||
|
COPY --from=builder /app/build /usr/share/nginx/html
|
||||||
|
EXPOSE 80
|
||||||
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
|
|
Loading…
Reference in a new issue