🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay
2022-10-12 20:07:21 -04:00
parent 594fddf413
commit 9f1cb99205
2 changed files with 10 additions and 11 deletions

View File

@@ -14,8 +14,8 @@ ENV TZ="$TIMEZONE" \
ENV="$HOME/.bashrc" \
TERM="xterm-256color" \
HOSTNAME="${HOSTNAME:-casjaysdev-$IMAGE_NAME}" \
DEBUG="${DEBUG}" \
DENO_VERSION="${DENO_VERSION}"
DEBUG="$DEBUG" \
DENO_VERSION="$DENO_VERSION"
RUN set -ex; \
rm -Rf "/etc/apk/repositories"; \
@@ -31,7 +31,7 @@ COPY ./config/. /usr/local/share/template-files/config/
RUN chmod -Rf 755 /usr/local/bin/get-deno.sh && \
/usr/local/bin/get-deno.sh && \
rm -Rf /usr/local/bin/get-deno.sh /bin/.gitkeep /config /data /var/cache/apk/*
rm -Rf /usr/local/bin/get-deno.sh /tmp/* /bin/.gitkeep /config /data /var/cache/apk/*
FROM scratch