shrug emoji
All checks were successful
build java / images:java_${{ matrix.tag }} (17) (push) Successful in 3m7s
build java / images:java_${{ matrix.tag }} (19_with_firefox) (push) Successful in 4m0s
build java / images:java_${{ matrix.tag }} (8) (push) Successful in 1m3s
build java / images:java_${{ matrix.tag }} (8_with_firefox) (push) Successful in 2m42s
All checks were successful
build java / images:java_${{ matrix.tag }} (17) (push) Successful in 3m7s
build java / images:java_${{ matrix.tag }} (19_with_firefox) (push) Successful in 4m0s
build java / images:java_${{ matrix.tag }} (8) (push) Successful in 1m3s
build java / images:java_${{ matrix.tag }} (8_with_firefox) (push) Successful in 2m42s
This commit is contained in:
parent
b3670ab124
commit
f72e583fe1
@ -20,6 +20,7 @@ jobs:
|
|||||||
- 8
|
- 8
|
||||||
- 8_with_firefox
|
- 8_with_firefox
|
||||||
- 17
|
- 17
|
||||||
|
- 19_with_firefox
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
35
java/19_with_firefox/Dockerfile
Normal file
35
java/19_with_firefox/Dockerfile
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# Latest Ubuntu image
|
||||||
|
FROM eclipse-temurin:19-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
|
||||||
|
|
||||||
|
# Fix for 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"]
|
Loading…
x
Reference in New Issue
Block a user