mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-23 20:49:26 +01:00
Aktualisieren Dockerfile
This commit is contained in:
parent
daed545d7c
commit
e2f78e188b
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Based upon https://github.com/Starbix/dockerimages/commit/b0c3e408263a90ee467d30aed0e855a610eb537a
|
||||||
|
|
||||||
|
FROM cirrusci/flutter:stable AS builder
|
||||||
|
|
||||||
|
RUN mkdir /fluffychat
|
||||||
|
WORKDIR /fluffychat
|
||||||
|
|
||||||
|
COPY ./ /fluffychat
|
||||||
|
RUN ./scripts/prepare-web.sh
|
||||||
|
|
||||||
|
RUN flutter build web --release
|
||||||
|
|
||||||
|
FROM nginx:alpine
|
||||||
|
|
||||||
|
COPY --from=builder /fluffychat/build/web/ /usr/share/nginx/html
|
||||||
|
COPY --from=builder /fluffychat/config.sample.json /usr/share/nginx/html/config.json
|
Loading…
Reference in New Issue
Block a user