initial commit
Some checks failed
Gitea/docker-base-images/alpine-base/pipeline/head There was a failure building this commit

This commit is contained in:
2023-04-04 20:15:33 +03:00
commit 0001b32707
2 changed files with 67 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
ARG BASE_IMAGE="alpine:3.17.3"
FROM ${BASE_IMAGE}
RUN apk update && \
apk add --no-cache openssh git curl
RUN curl -fsSLO https://get.docker.com/builds/Linux/x86_64/docker-17.04.0-ce.tgz \
&& tar xzvf docker-17.04.0-ce.tgz \
&& mv docker/docker /usr/local/bin \
&& rm -r docker docker-17.04.0-ce.tgz