mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-29 08:15:52 +00:00
5cba18120b
* move haskell implementation to a folder * build v5 branch * fixing CI
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 /
|