initial commit
Some checks failed
Gitea/docker-base-images/jdk14-alpine/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
2023-03-30 18:58:04 +03:00
commit 3d4671a11f
2 changed files with 59 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
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