mirror of
https://github.com/luzifer-docker/docker-compose.git
synced 2025-01-03 16:06:01 +00:00
Add rust toolchain to build cryptography dependency
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
74ff8a142d
commit
22eff81035
1 changed files with 6 additions and 2 deletions
|
@ -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"]
|
||||||
|
|
Loading…
Reference in a new issue