2021-07-24 11:57:10 +03:00
|
|
|
FROM haskell:8.10.4 AS build-stage
|
2021-02-21 19:59:52 +04:00
|
|
|
# if you encounter "version `GLIBC_2.28' not found" error when running
|
|
|
|
|
# chat client executable, build with the following base image instead:
|
2021-07-24 11:57:10 +03:00
|
|
|
# FROM haskell:8.10.4-stretch AS build-stage
|
2021-02-21 19:59:52 +04:00
|
|
|
COPY . /project
|
|
|
|
|
WORKDIR /project
|
|
|
|
|
RUN stack install
|
|
|
|
|
|
|
|
|
|
FROM scratch AS export-stage
|
2021-09-12 02:00:59 +10:00
|
|
|
COPY --from=build-stage /root/.local/bin/simplex-chat /
|