From d80d8c1b7758bca857682472c51f9891a16591f0 Mon Sep 17 00:00:00 2001 From: almouse Date: Wed, 12 Jul 2023 00:04:31 +0000 Subject: [PATCH] Attempt to add lines that might be causing silent crash --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a5289dd..7a05682 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ -# This image is cached on the Github Actions VM, so it drastically reduces build time FROM jekyll/minimal:latest USER root +RUN apk --no-cache add build-base +EXPOSE 4000/tcp + COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]