custom-dockerfile/Dockerfile-standard-notes

12 lines
255 B
Plaintext
Raw Normal View History

2024-09-17 06:17:20 -04:00
FROM node:16 AS builder
WORKDIR /app
RUN git clone https://github.com/standardnotes/app.git .
RUN yarn install
RUN yarn build:web
FROM nginx:alpine
WORKDIR /usr/share/nginx/html
COPY --from=builder /app/packages/web .
CMD ["nginx", "-g", "daemon off;"]