Commit 90c9e0c5 authored by Heimo Stranner's avatar Heimo Stranner
Browse files

upgrade cypress to use debian 12, jdk 21

parent 2cec1913
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
# inspired by https://github.com/cypress-io/cypress-docker-images and extended to support java 17, bullseye
FROM node:20-bullseye
FROM node:20-bookworm

RUN apt-get update && \
RUN wget -O- https://apt.corretto.aws/corretto.key | apt-key add - && echo 'deb https://apt.corretto.aws stable main' >> /etc/apt/sources.list && apt-get update && \
  apt-get install --no-install-recommends -y \
  libgtk2.0-0 \
  libgtk-3-0 \
@@ -30,7 +30,7 @@ RUN apt-get update && \
  ttf-wqy-zenhei \
  ttf-wqy-microhei \
  xfonts-wqy \
  openjdk-17-jdk \
  java-21-amazon-corretto-jdk \
  maven \
  # clean up
  && rm -rf /var/lib/apt/lists/* \