Delete Dockerfile.complex

This commit is contained in:
TheCaptain989
2020-10-06 12:32:33 -05:00
parent 3484da2827
commit 89a32c17b5
-23
View File
@@ -1,23 +0,0 @@
## Buildstage ##
FROM lsiobase/alpine:3.12 as buildstage
RUN \
echo "**** install packages ****" && \
apk add --no-cache \
curl && \
echo "**** grab rclone ****" && \
mkdir -p /root-layer && \
curl -o \
/root-layer/rclone.deb -L \
"https://downloads.rclone.org/v1.47.0/rclone-v1.47.0-linux-amd64.deb"
# copy local files
COPY root/ /root-layer/
## Single layer deployed image ##
FROM scratch
LABEL maintainer="username"
# Add files from buildstage
COPY --from=buildstage /root-layer/ /