From e75ca50e6bc96702709d6af2ea192cbeb2c4e186 Mon Sep 17 00:00:00 2001 From: casjay Date: Wed, 12 Oct 2022 22:19:42 -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 | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 30d13d8..b7ec4fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM casjaysdevdocker/debian:latest as build ARG TIMEZONE="America/New_York" \ IMAGE_NAME="bun" \ LICENSE="MIT" \ - DEBUG="" \ + DEBUG="" \ PORTS="1-65535" ENV TZ="$TIMEZONE" \ @@ -11,7 +11,7 @@ ENV TZ="$TIMEZONE" \ SHELL="/bin/bash" \ ENV="$HOME/.bashrc" \ TERM="xterm-256color" \ - HOSTNAME="${HOSTNAME:-casjaysdev-$IMAGE_NAME}" \ + HOSTNAME="${HOSTNAME:-casjaysdev-$IMAGE_NAME}" RUN set -ex; \ mkdir -p "/usr/local/share/template-files/data/htdocs/www" && \ @@ -25,8 +25,7 @@ COPY ./bin/. /usr/local/bin/ COPY ./data/. /usr/local/share/template-files/data/ COPY ./config/. /usr/local/share/template-files/config/ -RUN && \ - rm -Rf /tmp/* /bin/.gitkeep /config /data /var/lib/apt/lists/* /usr/local/share/template-files/data/htdocs/www/.git +RUN rm -Rf /tmp/* /bin/.gitkeep /config /data /var/lib/apt/lists/* /usr/local/share/template-files/data/htdocs/www/.git FROM scratch