* update ghc version to 8.10.4 for Docker build (#67) * make broader check for WSL on notifications (#68) * update readme: network topology and disclaimer on encryption design (#73) * update readme with the disclaimer on encryption design and explanation of the network topology * corrections * remove old disclaimer Co-authored-by: Efim Poberezkin <8711996+efim-poberezkin@users.noreply.github.com> * create appDir if absent (#79) Co-authored-by: Efim Poberezkin <8711996+efim-poberezkin@users.noreply.github.com> Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
11 lines
355 B
Docker
11 lines
355 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/dog-food /
|