2
0
Fork 0
mirror of https://github.com/luzifer-docker/docker-compose.git synced 2024-12-31 23:01:21 +00:00

Add rust toolchain to build cryptography dependency

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2021-03-07 13:09:50 +01:00
parent 74ff8a142d
commit 22eff81035
Signed by: luzifer
GPG key ID: 0066F03ED215AD7D

View file

@ -1,4 +1,4 @@
FROM python:3.8-alpine
FROM python:3-alpine
COPY container-build /opt/setup/container-build
COPY requirements.txt /opt/setup/requirements.txt
@ -6,9 +6,13 @@ COPY requirements.txt /opt/setup/requirements.txt
RUN set -ex \
&& apk --no-cache add \
bash \
cargo \
rust \
&& /opt/setup/container-build \
&& apk --no-cache del \
bash
bash \
cargo \
rust
ENTRYPOINT ["/usr/local/bin/docker-compose"]
CMD ["help"]