1
0
mirror of https://github.com/vector-im/hydrogen-web.git synced 2025-01-09 19:56:44 +01:00
2021-09-29 19:31:39 -07:00

10 lines
226 B
Docker

FROM docker.io/node:alpine as builder
RUN apk add --no-cache git python3 build-base
COPY . /app
WORKDIR /app
RUN yarn install \
&& yarn build
FROM docker.io/nginx:alpine
COPY --from=builder /app/target /usr/share/nginx/html