initial commit
Some checks failed
Gitea/docker-base-images/jdk14-alpine/pipeline/head Something is wrong with the build of this 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:
12
Dockerfile
Normal file
12
Dockerfile
Normal 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user