mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 08:02:15 +03:00
8 lines
296 B
Plaintext
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
|