jdk14-alpine/Dockerfile
amorozov 3d4671a11f
Some checks reported errors
Gitea/docker-base-images/jdk14-alpine/pipeline/head Something is wrong with the build of this commit
initial commit
2023-03-30 18:58:04 +03:00

13 lines
389 B
Docker

ARG BASE_IMAGE="adoptopenjdk/openjdk14:alpine-slim"
FROM ${BASE_IMAGE}
# 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 && \
pip3 install docker-compose && \
apk del .docker-compose-deps