graphql-engine/server/packaging/stack-build.df

8 lines
296 B
Plaintext

FROM fpco/stack-build:lts-13.20
# Install brotli dependencies
RUN apt-get -y update \
&& apt-get -y install cmake pkgconf \
&& git clone https://github.com/google/brotli.git && cd brotli && mkdir out && cd out && ../configure-cmake \
&& make && make test && make install && ldconfig