ell-firefox-image/Dockerfile

11 lines
366 B
Docker
Raw Normal View History

2024-07-18 16:40:24 +00:00
FROM selenium/standalone-firefox:127.0
2024-07-18 16:11:14 +00:00
2024-07-18 16:04:36 +00:00
RUN apt-get update -y \
2024-07-18 16:40:24 +00:00
&& apt-get install --no-install-recommends --no-install-suggests -y openjdk-19-jdk openjdk-19-jre
2024-07-18 16:26:32 +00:00
## Setup user and working directory
RUN useradd -m -d /home/container -s /bin/bash container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container