2 Commits

Author SHA1 Message Date
a3a94fcf4e updated Dockerfile
All checks were successful
Gitea/docker-base-images/jdk14-alpine/pipeline/head This commit looks good
2024-06-16 22:36:26 +03:00
28a1b616a8 updated Dockerfile
Some checks failed
Gitea/docker-base-images/jdk14-alpine/pipeline/head There was a failure building this commit
2024-06-16 22:33:41 +03:00

View File

@@ -6,16 +6,14 @@ FROM ${BASE_IMAGE}
ENV GROOVY_HOME=/opt/groovy
ENV GROOVY_VERSION=4.0.9
ENV DOCKER_COMPOSE_VERSION 1.23.2
# Install docker-cli, docker-compose, git, bash
RUN apk update && \
apk add --no-cache docker-cli python3 py3-pip git bash && \
apk add --no-cache --virtual .docker-compose-deps python3-dev libffi-dev openssl-dev gcc libc-dev make && \
# ln -s /usr/bin/pip3 /usr/bin/pip && \
ln -s /usr/bin/python3 /usr/bin/python && \
pip install --upgrade pip && \
pip3 install docker-compose && \
apk del .docker-compose-deps
apk add --no-cache docker-cli
RUN apk --update add py-pip &&\
pip install -U docker-compose==${DOCKER_COMPOSE_VERSION}
RUN set -o errexit -o nounset && echo "Installing build dependencies" && \
apk add --no-cache --virtual .build-deps gnupg && \