Merge branch 'braid/web-docker' into 'main'

feat: add Dockerfile for nginx/web builds

See merge request famedly/fluffychat!794
onboarding
Krille Fear 3 years ago
commit e36393dd8a

@ -0,0 +1,10 @@
FROM cirrusci/flutter as builder
RUN sudo apt update && sudo apt install curl -y
COPY . /app
WORKDIR /app
RUN ./scripts/prepare-web.sh
RUN ./scripts/build-web.sh
FROM docker.io/nginx:alpine
RUN rm -rf /usr/share/nginx/html
COPY --from=builder /app/build/web /usr/share/nginx/html
Loading…
Cancel
Save