123456789101112131415161718192021222324252627 |
- FROM haskell:8.6.3
- RUN apt-get update -yqq && apt-get install -yqq xz-utils make
- RUN apt-get install -yqq libpq-dev
- WORKDIR /app
- COPY stack.yaml ./
- COPY ./shared/tfb-types/tfb-types.cabal ./shared/tfb-types/
- COPY ./shared/tfb-hasql/tfb-hasql.cabal ./shared/tfb-hasql/
- COPY ./shared/tfb-mysql-haskell/tfb-mysql-haskell.cabal ./shared/tfb-mysql-haskell/
- COPY ./shared/tfb-postgres-wire/tfb-postgres-wire.cabal ./shared/tfb-postgres-wire/
- COPY ./warp-shared/warp-shared.cabal ./warp-shared/
- RUN stack setup
- RUN stack install --dependencies-only
- ADD ./shared ./shared
- ADD ./warp-shared ./warp-shared
- RUN stack build --pedantic --copy-bins
- RUN ln -s ~/.local/bin/warp-postgres-wire ~/.local/bin/warp
- ARG TFB_TEST_NAME
- ENV TFB_TEST_NAME=${TFB_TEST_NAME}
- EXPOSE 7041
- CMD stack exec $TFB_TEST_NAME -- tfb-database +RTS -A32m -N$(nproc)
|