🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-19 17:56:19 -04:00
parent f6c2d8a5aa
commit cae877d1f8
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -26,9 +26,9 @@ RUN set -ex; \
echo "http://dl-cdn.alpinelinux.org/alpine/${ALPINE_VERSION}/community" >>"/etc/apk/repositories"; \ echo "http://dl-cdn.alpinelinux.org/alpine/${ALPINE_VERSION}/community" >>"/etc/apk/repositories"; \
if [ "${ALPINE_VERSION}" = "edge" ]; then echo "http://dl-cdn.alpinelinux.org/alpine/${ALPINE_VERSION}/testing" >>"/etc/apk/repositories" ; fi ; \ if [ "${ALPINE_VERSION}" = "edge" ]; then echo "http://dl-cdn.alpinelinux.org/alpine/${ALPINE_VERSION}/testing" >>"/etc/apk/repositories" ; fi ; \
apk update --update-cache && apk add --no-cache ${PACK_LIST} && \ apk update --update-cache && apk add --no-cache ${PACK_LIST} && \
cd /tmp && mkdir -p /tmp/ariang /var/www/ariang && \ mkdir -p /tmp/ariang /var/www/ariang && \
curl -q -LSsf https://github.com/mayswind/AriaNg/releases/download/$ARIANG_VERSION/AriaNg-$ARIANG_VERSION.zip -o /tmp/AriaNg-$ARIANG_VERSION.zip && \ curl -q -LSsf https://github.com/mayswind/AriaNg/releases/download/$ARIANG_VERSION/AriaNg-$ARIANG_VERSION.zip -o /tmp/AriaNg-$ARIANG_VERSION.zip && \
unzip /tmp/AriaNg-$ARIANG_VERSION.zip && \ cd /tmp/ariang && unzip /tmp/AriaNg-$ARIANG_VERSION.zip -d /tmp/ariang && \
rsync -ahP /tmp/ariang/. /var/www/ariang/ rsync -ahP /tmp/ariang/. /var/www/ariang/
RUN echo 'Running cleanup' ; \ RUN echo 'Running cleanup' ; \