Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ RUN apt-get update && \
git \
build-essential \
cmake \
bmake \
clang \
nginx \
supervisor && \
rm -rf /var/lib/apt/lists/* /var/log/dpkg.log && \
Expand Down Expand Up @@ -93,6 +95,14 @@ RUN git clone --branch v1.6.0 --recurse-submodules https://github.com/dthaler/rs
cd .. && \
rm -rf rst2rfcxml

# Build and install kgt
RUN git clone --depth 1 --recursive https://github.com/katef/kgt.git kgt && \
cd kgt && \
CC=clang bmake -r && \
bmake -r install && \
cd .. && \
rm -rf kgt

COPY Gemfile Gemfile.lock LICENSE README.md api.yml constraints.txt package-lock.json package.json requirements.txt docker/version.py ./
COPY at ./at

Expand Down