From d0050822ad87d2ea560ab27c5040b1b1db442c29 Mon Sep 17 00:00:00 2001 From: casjay Date: Wed, 12 Oct 2022 20:22:36 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Committing=20everything?= =?UTF-8?q?=20that=20changed=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 02caedc..e04a6b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM casjaysdevdocker/debian:latest as build -ARG alpine_version="v3.16" \ - TIMEZONE="America/New_York" \ +ARG TIMEZONE="America/New_York" \ IMAGE_NAME="alpine" \ LICENSE="MIT" \ DEBUG="" \ @@ -9,16 +8,16 @@ ARG alpine_version="v3.16" \ PORTS="1-65535" ENV TZ="$TIMEZONE" \ + DEBUG="$DEBUG" \ SHELL="/bin/bash" \ ENV="$HOME/.bashrc" \ TERM="xterm-256color" \ HOSTNAME="${HOSTNAME:-casjaysdev-$IMAGE_NAME}" \ - DEBUG="$DEBUG" \ DENO_VERSION="$DENO_VERSION" RUN set -ex; \ 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 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 && \ /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