mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
4947ba950d
- [OPTIMIZATION]: flush encoder stream only when necessary. - [BUGFIX] Use ls-qpack v0.10.2 for new API -- and for a bug fix. - [BUGFIX] Typo in IETF conn SETTINGS writer. - Use latest BoringSSL.
28 lines
739 B
Docker
28 lines
739 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y build-essential git cmake software-properties-common \
|
|
zlib1g-dev libevent-dev
|
|
|
|
RUN add-apt-repository ppa:gophers/archive && \
|
|
apt-get update && \
|
|
apt-get install -y golang-1.9-go && \
|
|
cp /usr/lib/go-1.9/bin/go* /usr/bin/.
|
|
|
|
RUN mkdir /src
|
|
WORKDIR /src
|
|
|
|
RUN mkdir /src/lsquic
|
|
COPY ./ /src/lsquic/
|
|
|
|
RUN git clone https://boringssl.googlesource.com/boringssl && \
|
|
cd boringssl && \
|
|
git checkout 49de1fc2910524c888866c7e2b0db1ba8af2a530 && \
|
|
cmake . && \
|
|
make
|
|
|
|
RUN cd /src/lsquic && \
|
|
cmake -DBORINGSSL_DIR=/src/boringssl . && \
|
|
make
|
|
|
|
RUN cd lsquic && make test && cp http_client /usr/bin/ && cp http_server /usr/bin
|