add: docker build

This commit is contained in:
Mohamed Sohail 2022-01-13 10:57:05 +03:00
commit dd4c36e5c7
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D
1 changed files with 15 additions and 0 deletions

15
docker-build/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM docker:20.10-git
RUN apk add --no-cache py3-pip python3
RUN apk add --no-cache --virtual \
build-dependencies \
cargo \
gcc \
libc-dev \
libffi-dev \
make \
openssl-dev \
python3-dev \
rust \
&& pip3 install --no-cache-dir docker-compose~=1.29 \
&& apk del build-dependencies