docker-images/java8-with-firefox/Dockerfile
Liam 73ad9c552b
Some checks failed
Publish Docker Image / docker (push) Failing after 18s
move to root dir
2023-11-29 18:58:27 +00:00

34 lines
757 B
Docker

# Latest Ubuntu image
FROM eclipse-temurin:8u312-b07-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 \
firefox
ENV DISPLAY=:0
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"]