Piped/Dockerfile

19 lines
391 B
Docker
Raw Normal View History

2021-10-28 17:55:32 +00:00
FROM node:lts-alpine AS build
2021-08-03 18:04:52 +00:00
WORKDIR /app/
COPY . .
2022-02-23 12:56:43 +00:00
RUN --mount=type=cache,target=/root/.cache/yarn \
--mount=type=cache,target=/app/node_modules \
pkg add curl && \
2022-02-23 12:56:43 +00:00
yarn install --prefer-offline && \
yarn build && ./localizefonts.sh
2021-08-03 18:04:52 +00:00
FROM nginx:alpine
COPY --from=build /app/dist/ /usr/share/nginx/html/
2021-08-20 16:10:37 +00:00
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
2021-08-03 18:04:52 +00:00
EXPOSE 80