jsoncrack.com/Dockerfile

11 lines
259 B
Docker
Raw Normal View History

# Builder
2023-04-22 10:45:56 +03:00
FROM node:16-alpine as builder
WORKDIR /src
2023-03-08 11:43:38 +03:00
COPY . /src/
2023-03-09 22:47:03 +03:00
RUN yarn install --frozen-lockfile && yarn build
# App
2022-08-16 17:23:13 +03:00
FROM nginxinc/nginx-unprivileged
2023-03-08 11:43:38 +03:00
COPY --chown=nginx:nginx --from=builder /src/out /app
2022-08-16 17:23:13 +03:00
COPY default.conf /etc/nginx/conf.d/default.conf