linkylinky-dashboard/Dockerfile

10 lines
247 B
Docker
Raw Normal View History

2021-08-16 16:35:16 +00:00
FROM library/node:16-alpine
2021-08-16 16:33:25 +00:00
WORKDIR /app
COPY package.json ./
RUN yarn
COPY ./ ./
RUN yarn build
2021-08-21 15:04:45 +00:00
FROM registry.odit.services/testing/nginx-brotli:3.13
2021-08-16 16:33:25 +00:00
COPY --from=0 /app/build /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/nginx.conf