docker-images/java/8/Dockerfile

31 lines
722 B
Docker
Raw Permalink Normal View History

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