1
0
mirror of https://github.com/vector-im/hydrogen-web.git synced 2025-01-11 12:37:22 +01:00

10 lines
207 B
Docker
Raw Normal View History

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