hydrogen-web/Dockerfile
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