Files
legacy-docker-compose/DroneImage/Dockerfile
2023-09-26 18:14:36 -06:00

20 lines
400 B
Docker

FROM alpine:latest
# Install base packages
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
RUN apk add --update --no-cache \
bash \
git \
openssh \
curl \
docker \
docker-cli \
docker-cli-compose \
bind-tools \
yq \
jq \
rsync
# Install deployment scripts
COPY ./DeploymentScripts /scripts
RUN chmod -R +x /scripts