-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
512baed
commit 618d61c
Showing
1 changed file
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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, <[email protected]> | ||
|
||
|