mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-08 15:54:51 +00:00
07e7ed98b5
Change-Id: I6f60fae65f03740f26d94d9a3cc2fa2402511ca9
18 lines
261 B
Docker
18 lines
261 B
Docker
# Builder
|
|
FROM node:10-alpine as builder
|
|
|
|
WORKDIR /src
|
|
|
|
COPY . /src
|
|
RUN yarn --network-timeout=100000 install
|
|
RUN yarn build
|
|
|
|
|
|
# App
|
|
FROM nginx:alpine
|
|
|
|
COPY --from=builder /src/build /app
|
|
|
|
RUN rm -rf /usr/share/nginx/html \
|
|
&& ln -s /app /usr/share/nginx/html
|