mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
11 lines
353 B
Text
11 lines
353 B
Text
|
FROM haskell:8.8.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.8.4-stretch AS build-stage
|
||
|
COPY . /project
|
||
|
WORKDIR /project
|
||
|
RUN stack install
|
||
|
|
||
|
FROM scratch AS export-stage
|
||
|
COPY --from=build-stage /root/.local/bin/dog-food /
|