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:
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 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"]
|
||||
|
|
Loading…
Reference in a new issue