🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-12 20:22:36 -04:00
parent 6c928f9f46
commit d0050822ad
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -1,7 +1,6 @@
FROM casjaysdevdocker/debian:latest as build FROM casjaysdevdocker/debian:latest as build
ARG alpine_version="v3.16" \ ARG TIMEZONE="America/New_York" \
TIMEZONE="America/New_York" \
IMAGE_NAME="alpine" \ IMAGE_NAME="alpine" \
LICENSE="MIT" \ LICENSE="MIT" \
DEBUG="" \ DEBUG="" \
@ -9,16 +8,16 @@ ARG alpine_version="v3.16" \
PORTS="1-65535" PORTS="1-65535"
ENV TZ="$TIMEZONE" \ ENV TZ="$TIMEZONE" \
DEBUG="$DEBUG" \
SHELL="/bin/bash" \ SHELL="/bin/bash" \
ENV="$HOME/.bashrc" \ ENV="$HOME/.bashrc" \
TERM="xterm-256color" \ TERM="xterm-256color" \
HOSTNAME="${HOSTNAME:-casjaysdev-$IMAGE_NAME}" \ HOSTNAME="${HOSTNAME:-casjaysdev-$IMAGE_NAME}" \
DEBUG="$DEBUG" \
DENO_VERSION="$DENO_VERSION" DENO_VERSION="$DENO_VERSION"
RUN set -ex; \ RUN set -ex; \
rm -Rf "/etc/apk/repositories"; \ rm -Rf "/etc/apk/repositories"; \
apt update && apt upgrade -yy && apt install -yy \ apt-get update && apt-get upgrade -yy && apt-get install -yy \
unzip unzip
COPY ./bin/. /usr/local/bin/ COPY ./bin/. /usr/local/bin/
@ -27,7 +26,7 @@ COPY ./config/. /usr/local/share/template-files/config/
RUN chmod -Rf 755 /usr/local/bin/get-deno.sh && \ RUN chmod -Rf 755 /usr/local/bin/get-deno.sh && \
/usr/local/bin/get-deno.sh && \ /usr/local/bin/get-deno.sh && \
rm -Rf /usr/local/bin/get-deno.sh /tmp/* /bin/.gitkeep /config /data /var/cache/apk/* rm -Rf /usr/local/bin/get-deno.sh /tmp/* /bin/.gitkeep /config /data /var/lib/apt/lists/*
FROM scratch FROM scratch