2017-11-18 19:11:14 +01:00
|
|
|
FROM golang:latest
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
2018-08-26 14:35:18 +02:00
|
|
|
python3-pip \
|
|
|
|
unzip
|
|
|
|
|
|
|
|
RUN wget https://github.com/protocolbuffers/protobuf/releases/download/v3.6.1/protoc-3.6.1-linux-x86_64.zip
|
|
|
|
RUN echo "6003de742ea3fcf703cfec1cd4a3380fd143081a2eb0e559065563496af27807 protoc-3.6.1-linux-x86_64.zip" | sha256sum -c
|
|
|
|
RUN unzip -d /usr protoc-3.6.1-linux-x86_64.zip
|
2017-11-18 19:11:14 +01:00
|
|
|
|
|
|
|
ADD lazy.sh /tmp/lazy.sh
|
|
|
|
ADD docs/requirements.txt /tmp/requirements.txt
|
|
|
|
ENV ZREPL_LAZY_DOCS_REQPATH=/tmp/requirements.txt
|
2017-11-19 12:32:25 +01:00
|
|
|
RUN /tmp/lazy.sh devsetup
|
2017-11-18 19:11:14 +01:00
|
|
|
|
2017-11-19 12:32:25 +01:00
|
|
|
# prepare volume mount of git checkout to /zrepl
|
2017-12-29 22:25:15 +01:00
|
|
|
RUN mkdir -p /go/src/github.com/zrepl/zrepl
|
2017-11-19 12:32:25 +01:00
|
|
|
RUN chmod -R 0777 /go
|
2018-04-01 17:53:51 +02:00
|
|
|
RUN mkdir -p /.cache && chmod -R 0777 /.cache
|
2017-11-18 19:11:14 +01:00
|
|
|
WORKDIR /go/src/github.com/zrepl/zrepl
|
|
|
|
|
|
|
|
|