From 6c60acf5f2a12bde8eefe34d6b3883eaf0eeaf6b Mon Sep 17 00:00:00 2001 From: swaggboi Date: Sat, 6 Jan 2024 13:22:57 -0500 Subject: [PATCH] Run app in production mode in donker --- Dockerfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index ca67095..b4e87cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,15 +11,10 @@ COPY templates/ ./templates/ RUN apt-get update RUN apt-get -y upgrade RUN apt-get -y install libssl-dev libarchive-dev -# Stupid tests failing idk -RUN zef -v install --force-test IO::Socket::Async::SSL \ - Archive::Libarchive::Raw NativeHelpers::Callback -# Get the latest and greatest for bug fix -# https://github.com/rawleyfowler/Humming-Bird/issues/60#issuecomment-1788351265 -RUN zef install https://github.com/rawleyfowler/Humming-Bird.git --force-install RUN zef -v install --deps-only . # Finish setting up the environment +ENV HUMMING_BIRD_ENV='PROD' EXPOSE 3000 CMD ["raku", "bin/hyperlink-redirect"]