mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-21 16:03:32 +01:00
523a3bb26b
Debian bookworm apparently _requires_ pip to be used in venv, at least when we use it inside the build.Dockerfile. So, do that.
37 lines
870 B
Docker
37 lines
870 B
Docker
FROM !SUBSTITUTED_BY_MAKEFILE
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
python3-pip \
|
|
python3-venv \
|
|
unzip \
|
|
gawk
|
|
|
|
ADD build.installprotoc.bash ./
|
|
RUN bash build.installprotoc.bash
|
|
|
|
# setup venv
|
|
ENV VIRTUAL_ENV=/opt/venv
|
|
RUN python3 -m venv $VIRTUAL_ENV
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
|
|
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 docdep
|
|
|
|
# prepare volume mount of git checkout to /zrepl
|
|
RUN mkdir -p /src/github.com/zrepl/zrepl
|
|
RUN mkdir -p /.cache && chmod -R 0777 /.cache
|
|
|
|
# $GOPATH is /go
|
|
# Go 1.12 doesn't use modules within GOPATH, but 1.13 and later do
|
|
# => store source outside of GOPATH
|
|
WORKDIR /src
|
|
|
|
# Install build tools (e.g. protobuf generator, stringer) into $GOPATH/bin
|
|
ADD build/ /tmp/build
|
|
RUN /tmp/lazy.sh godep
|
|
|
|
RUN chmod -R 0777 /go
|
|
|