You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
403 B
19 lines
403 B
FROM node:18 AS build |
|
|
|
WORKDIR /opt/node_app |
|
|
|
COPY . . |
|
|
|
# do not ignore optional dependencies: |
|
# Error: Cannot find module @rollup/rollup-linux-x64-gnu |
|
RUN yarn --network-timeout 600000 |
|
|
|
ARG NODE_ENV=production |
|
|
|
RUN yarn build:app:docker |
|
|
|
FROM nginx:1.27-alpine |
|
|
|
COPY --from=build /opt/node_app/excalidraw-app/build /usr/share/nginx/html |
|
|
|
HEALTHCHECK CMD wget -q -O /dev/null http://localhost || exit 1
|
|
|