jsonnet-sys 0.6.0

Native bindings to the libjsonnet library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM alpine:latest

RUN apk -U add build-base

WORKDIR /opt

COPY . /opt/jsonnet

RUN cd jsonnet && \
    make && \
    mv jsonnet /usr/local/bin && \
    rm -rf /opt/jsonnet

ENTRYPOINT ["/usr/local/bin/jsonnet"]