From 618d61c8e637f422f5e5653a79c28f2400d16baa Mon Sep 17 00:00:00 2001 From: Jake Moore <38172916+Jake-Moore@users.noreply.github.com> Date: Tue, 17 Oct 2023 18:48:18 -0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index b31d628..41916c1 100755 --- a/Dockerfile +++ b/Dockerfile @@ -5,16 +5,15 @@ # ---------------------------------- # Stage 1: Use a base image that uses APT package manager to install bash -# FROM debian:bullseye as builder +FROM openjdk:8-jdk-alpine as builder # Install Bash -# RUN apt-get update && apt-get install -y bash +RUN apk add --no-cache --update curl ca-certificates openssl git tar bash sqlite fontconfig # Stage 2: Rest of the script from ntfy -# FROM binwiederhier/ntfy -FROM openjdk:8-jdk-alpine +FROM binwiederhier/ntfy # Copy the Bash binary from the builder stage to the final image -# COPY --from=builder /bin/bash /bin/bash +COPY --from=builder /bin/bash /bin/bash MAINTAINER KamikazeJAM,