* update readme * case * fixes, roadmap * wording * features * update gifs and images * block warning * add link from announcement to groups * update default servers * update readme * update roadmap, image, etc. Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
11 lines
359 B
Docker
11 lines
359 B
Docker
FROM haskell:8.10.4 AS build-stage
|
|
# if you encounter "version `GLIBC_2.28' not found" error when running
|
|
# chat client executable, build with the following base image instead:
|
|
# FROM haskell:8.10.4-stretch AS build-stage
|
|
COPY . /project
|
|
WORKDIR /project
|
|
RUN stack install
|
|
|
|
FROM scratch AS export-stage
|
|
COPY --from=build-stage /root/.local/bin/simplex-chat /
|