This commit is contained in:
2023-09-26 18:14:36 -06:00
commit fb5a0fc542
443 changed files with 21892 additions and 0 deletions

20
DroneImage/Dockerfile Normal file
View File

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