docker-images/generic/java/8/Dockerfile
Liam 9bd99708b7
Some checks failed
build java / images:java_${{ matrix.tag }} (8) (push) Failing after 15s
Publish Docker Image / docker (push) Failing after 15s
very smart
2023-11-29 22:25:10 +00:00

31 lines
724 B
Docker

# Latest Ubuntu image
FROM eclipse-temurin:8u392-b08-jdk-focal
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update -y \
&& apt install -y \
curl \
lsof \
ca-certificates \
openssl \
git \
tar \
sqlite3 \
fontconfig \
tzdata \
iproute2 \
libfreetype6 \
tini
RUN useradd -m -d /home/container -s /bin/bash container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
STOPSIGNAL SIGINT
COPY --chown=container:container ./../entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/usr/bin/tini", "-g", "--"]
CMD ["/entrypoint.sh"]