mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-20 02:59:26 +01:00
feat: Provide simple Dockerfile
This commit is contained in:
parent
daed545d7c
commit
a19bb9ff04
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