mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
8473462adf
was symlinking /zrepl to /go/src/github.com/zrepl/zrepl earlier, forgot
to change that apparently
see 47726ad877
refs #38
17 lines
386 B
Docker
17 lines
386 B
Docker
FROM golang:latest
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
python3-pip
|
|
|
|
ADD lazy.sh /tmp/lazy.sh
|
|
ADD docs/requirements.txt /tmp/requirements.txt
|
|
ENV ZREPL_LAZY_DOCS_REQPATH=/tmp/requirements.txt
|
|
RUN /tmp/lazy.sh devsetup
|
|
|
|
# prepare volume mount of git checkout to /zrepl
|
|
RUN mkdir -p /go/src/github.com/zrepl/zrepl
|
|
RUN chmod -R 0777 /go
|
|
WORKDIR /go/src/github.com/zrepl/zrepl
|
|
|
|
|