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 container-build /opt/setup/container-build
COPY requirements.txt /opt/setup/requirements.txt COPY requirements.txt /opt/setup/requirements.txt
@ -6,9 +6,13 @@ COPY requirements.txt /opt/setup/requirements.txt
RUN set -ex \ RUN set -ex \
&& apk --no-cache add \ && apk --no-cache add \
bash \ bash \
cargo \
rust \
&& /opt/setup/container-build \ && /opt/setup/container-build \
&& apk --no-cache del \ && apk --no-cache del \
bash bash \
cargo \
rust
ENTRYPOINT ["/usr/local/bin/docker-compose"] ENTRYPOINT ["/usr/local/bin/docker-compose"]
CMD ["help"] CMD ["help"]