2022-09-01 10:50:24 +00:00
|
|
|
# syntax = docker/dockerfile:1.3
|
2022-11-02 15:42:29 +00:00
|
|
|
ARG ALPINE_VERSION=3.16
|
2022-09-01 10:50:24 +00:00
|
|
|
FROM alpine:${ALPINE_VERSION} AS builder
|
2019-06-17 09:01:30 +00:00
|
|
|
|
2022-12-10 21:29:44 +00:00
|
|
|
RUN apk add --no-cache git python3 python3-dev py3-pip build-base
|
2018-12-19 12:29:25 +00:00
|
|
|
|
2022-09-01 10:50:24 +00:00
|
|
|
# set pip's cache directory using this environment variable, and use
|
|
|
|
# ARG instead of ENV to ensure its only set when the image is built
|
|
|
|
ARG PIP_CACHE_DIR=/tmp/pip-cache
|
|
|
|
|
2018-12-19 12:29:25 +00:00
|
|
|
# build wheels in first image
|
|
|
|
ADD . /tmp/src
|
2021-07-04 17:30:39 +00:00
|
|
|
RUN cd /tmp/src && git clean -xfd && git status
|
2022-09-01 10:50:24 +00:00
|
|
|
RUN --mount=type=cache,target=${PIP_CACHE_DIR} \
|
|
|
|
mkdir /tmp/wheelhouse \
|
2018-12-19 12:29:25 +00:00
|
|
|
&& cd /tmp/wheelhouse \
|
2019-06-17 09:01:30 +00:00
|
|
|
&& pip3 install wheel \
|
2022-09-01 10:50:24 +00:00
|
|
|
&& pip3 wheel /tmp/src \
|
2019-09-06 10:26:56 +00:00
|
|
|
&& ls -l /tmp/wheelhouse
|
2018-12-19 12:29:25 +00:00
|
|
|
|
2019-06-17 09:01:30 +00:00
|
|
|
FROM alpine:${ALPINE_VERSION}
|
2018-12-19 12:29:25 +00:00
|
|
|
|
2020-09-09 16:10:19 +00:00
|
|
|
# install python, git, bash, mercurial
|
2022-12-11 00:11:21 +00:00
|
|
|
RUN apk add --no-cache git git-lfs python3 py3-pip py3-setuptools bash docker mercurial
|
2020-09-09 16:10:19 +00:00
|
|
|
|
2022-09-01 10:50:24 +00:00
|
|
|
# repeat ARG from above
|
|
|
|
ARG PIP_CACHE_DIR=/tmp/pip-cache
|
2018-12-19 12:29:25 +00:00
|
|
|
|
|
|
|
# install repo2docker
|
2022-09-01 10:50:24 +00:00
|
|
|
# and hg-evolve (Mercurial extensions)
|
|
|
|
# mount /tmp/wheelhouse from build stage
|
|
|
|
# avoids extra layer when using COPY --from
|
|
|
|
RUN --mount=type=cache,target=${PIP_CACHE_DIR} \
|
|
|
|
--mount=type=cache,from=builder,source=/tmp/wheelhouse,target=/tmp/wheelhouse \
|
|
|
|
pip3 install --ignore-installed --no-deps /tmp/wheelhouse/*.whl \
|
|
|
|
&& pip3 install hg-evolve \
|
2019-09-06 10:26:56 +00:00
|
|
|
&& pip3 list
|
2018-12-19 12:29:25 +00:00
|
|
|
|
|
|
|
# add git-credential helper
|
|
|
|
COPY ./docker/git-credential-env /usr/local/bin/git-credential-env
|
|
|
|
RUN git config --system credential.helper env
|
2017-05-09 10:07:56 +00:00
|
|
|
|
2021-01-13 12:32:17 +00:00
|
|
|
# add entrypoint
|
|
|
|
COPY ./docker/entrypoint /usr/local/bin/entrypoint
|
|
|
|
RUN chmod +x /usr/local/bin/entrypoint
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint"]
|
|
|
|
|
2017-12-25 02:03:17 +00:00
|
|
|
# Used for testing purpose in ports.py
|
|
|
|
EXPOSE 52000
|