Change catalyst installation.
This commit is contained in:
parent
6bcd72fbb9
commit
f6da3c6a2d
20
Dockerfile
20
Dockerfile
@ -1,13 +1,21 @@
|
|||||||
FROM python:3.7-alpine
|
FROM python:3.7-alpine
|
||||||
|
|
||||||
RUN apk add git
|
|
||||||
|
|
||||||
RUN apk add --no-cache --virtual .build-deps \
|
RUN apk add --no-cache --virtual .build-deps \
|
||||||
gcc musl-dev \
|
git make gcc musl-dev \
|
||||||
&& pip install snakeoil \
|
|
||||||
&& apk del .build-deps
|
|
||||||
|
|
||||||
RUN pip install git+https://anongit.gentoo.org/git/proj/catalyst.git
|
# Install deps
|
||||||
|
&& pip install snakeoil \
|
||||||
|
|
||||||
|
# Clone catalyst repository
|
||||||
|
&& git clone https://anongit.gentoo.org/git/proj/catalyst.git catalyst \
|
||||||
|
|
||||||
|
# Build and install catalyst
|
||||||
|
&& cd catalyst \
|
||||||
|
&& make \
|
||||||
|
&& python -m setup install \
|
||||||
|
|
||||||
|
# Cleanup
|
||||||
|
&& apk del .build-deps
|
||||||
|
|
||||||
# Override Stage3 preclean to add perl-cleaner invocation
|
# Override Stage3 preclean to add perl-cleaner invocation
|
||||||
COPY stage3-preclean-chroot.sh \
|
COPY stage3-preclean-chroot.sh \
|
||||||
|
Loading…
Reference in New Issue
Block a user