mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-12 17:54:40 +00:00
5d1e43611c
Use yarn PnP which forces us to install some more explicit dependencies. Change-Id: Ib35c5c71a37081c98778937bde5a23bf997dd54c
25 lines
751 B
Docker
25 lines
751 B
Docker
# Builder
|
|
FROM node:lts as builder
|
|
LABEL org.opencontainers.image.url=https://github.com/Awesome-Technologies/synapse-admin org.opencontainers.image.source=https://github.com/Awesome-Technologies/synapse-admin
|
|
|
|
WORKDIR /src
|
|
|
|
# Copy .yarn directory to the working directory (must be on a separate line!)
|
|
# Use https://docs.docker.com/engine/reference/builder/#copy---parents when available
|
|
COPY .yarn .yarn
|
|
COPY package.json .yarnrc.yml yarn.lock ./
|
|
|
|
# Disable telemetry and install packages
|
|
RUN yarn config set enableTelemetry 0 && yarn install --immutable --network-timeout=300000
|
|
|
|
COPY . /src
|
|
RUN yarn build
|
|
|
|
# App
|
|
FROM nginx:stable-alpine
|
|
|
|
COPY --from=builder /src/dist /app
|
|
|
|
RUN rm -rf /usr/share/nginx/html \
|
|
&& ln -s /app /usr/share/nginx/html
|