From 8f5e90f8be22f666539aa9056116611275529e39 Mon Sep 17 00:00:00 2001 From: Jalexchen Date: Tue, 20 Dec 2022 12:30:57 -0800 Subject: [PATCH] Publish v19.3.0. [release] (#310) --- 19.3/Dockerfile | 31 ++++++++++++++++++ 19.3/browsers/Dockerfile | 68 ++++++++++++++++++++++++++++++++++++++++ ALIASES | 2 +- GEN-CHECK | 2 +- build-images.sh | 4 +-- push-images.sh | 12 +++---- 6 files changed, 109 insertions(+), 10 deletions(-) create mode 100644 19.3/Dockerfile create mode 100644 19.3/browsers/Dockerfile diff --git a/19.3/Dockerfile b/19.3/Dockerfile new file mode 100644 index 0000000..adecaac --- /dev/null +++ b/19.3/Dockerfile @@ -0,0 +1,31 @@ +# vim:set ft=dockerfile: + +# Do not edit individual Dockerfiles manually. Instead, please make changes to the Dockerfile.template, which will be used by the build script to generate Dockerfiles. + +# By policy, the base image tag should be a quarterly tag unless there's a +# specific reason to use a different one. This means January, April, July, or +# October. + +# NOTE: This uses November due to an OpenSSL CVE fix. We will resume using quarterly versions of cimg-base in Q1 +FROM cimg/base:2022.11 + +LABEL maintainer="Community & Partner Engineering Team " + +ENV NODE_VERSION 19.3.0 + +RUN curl -L -o node.tar.xz "https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-linux-x64.tar.xz" && \ + sudo tar -xJf node.tar.xz -C /usr/local --strip-components=1 && \ + rm node.tar.xz && \ + sudo ln -s /usr/local/bin/node /usr/local/bin/nodejs + +ENV PATH /home/circleci/.yarn/bin:$PATH + +ENV YARN_VERSION 1.22.18 +RUN curl -L -o yarn.tar.gz "https://yarnpkg.com/downloads/${YARN_VERSION}/yarn-v${YARN_VERSION}.tar.gz" && \ + sudo tar -xzf yarn.tar.gz -C /opt/ && \ + rm yarn.tar.gz && \ + sudo ln -s /opt/yarn-v${YARN_VERSION}/bin/yarn /usr/local/bin/yarn && \ + sudo ln -s /opt/yarn-v${YARN_VERSION}/bin/yarnpkg /usr/local/bin/yarnpkg + +# Install an alternative, but growing in popularity Node.js package manager +RUN sudo npm install -g pnpm diff --git a/19.3/browsers/Dockerfile b/19.3/browsers/Dockerfile new file mode 100644 index 0000000..d64ce47 --- /dev/null +++ b/19.3/browsers/Dockerfile @@ -0,0 +1,68 @@ +# vim:set ft=dockerfile: + +# This file is a duplicate of: +# https://github.com/CircleCI-Public/cimg-shared/blob/master/variants/browsers.Dockerfile.template +# The reason this exists is that the Node.js image needed its own version of +# the browsers variant. The normal version is based on the node variant of that +# image. As this IS a Node image, there isn't a node variant. + +FROM cimg/node:19.3.0 + +LABEL maintainer="CircleCI Community & Partner Engineering Team " + +# Install Selenium +ENV SELENIUM_VER=3.141.59 +RUN curl -sSL -o selenium-server-standalone-${SELENIUM_VER}.jar "https://selenium-release.storage.googleapis.com/${SELENIUM_VER%.*}/selenium-server-standalone-${SELENIUM_VER}.jar" && \ + sudo cp selenium-server-standalone-${SELENIUM_VER}.jar /usr/local/bin/selenium.jar && \ + rm selenium-server-standalone-${SELENIUM_VER}.jar + +RUN sudo apt-get update && \ + + # Install Java only if it's not already available + # Java is installed for Selenium + if ! command -v java > /dev/null; then \ + echo "Java not found in parent image, installing..." && \ + sudo apt-get install -y --no-install-recommends --no-upgrade openjdk-11-jre; \ + fi && \ + + # Firefox deps + sudo apt-get install -y --no-install-recommends --no-upgrade \ + libdbus-glib-1-2 \ + libgtk-3-dev \ + libxt6 \ + && \ + # Google Chrome deps + # Some of these packages should be pulled into their own section + sudo apt-get install -y --no-install-recommends --no-upgrade \ + fonts-liberation \ + libappindicator3-1 \ + libasound2 \ + libatk-bridge2.0-0 \ + libatspi2.0-0 \ + libcairo2 \ + libcups2 \ + libgbm1 \ + libgdk-pixbuf2.0-0 \ + libgtk-3-0 \ + libpango-1.0-0 \ + libpangocairo-1.0-0 \ + libxcursor1 \ + libxss1 \ + xdg-utils \ + xvfb \ + && \ + sudo rm -rf /var/lib/apt/lists/* + +# Below is setup to allow xvfb to start when the container starts up. +# The label in particular allows this image to override what CircleCI does +# when booting the image. +LABEL com.circleci.preserve-entrypoint=true +ENV DISPLAY=":99" +#RUN printf '#!/bin/sh\nXvfb :99 -screen 0 1280x1024x24 &\nexec "$@"\n' > /tmp/entrypoint && \ +# chmod +x /tmp/entrypoint && \ +# sudo mv /tmp/entrypoint /docker-entrypoint.sh +RUN printf '#!/bin/sh\nXvfb :99 -screen 0 1280x1024x24 &\nexec "$@"\n' | sudo tee /docker-entrypoint.sh && \ + sudo chmod +x /docker-entrypoint.sh + +ENTRYPOINT ["/docker-entrypoint.sh"] +CMD ["/bin/sh"] diff --git a/ALIASES b/ALIASES index 60c327d..aaee94a 100644 --- a/ALIASES +++ b/ALIASES @@ -1,2 +1,2 @@ lts=18.12.1 -current=19.2.0 +current=19.3.0 diff --git a/GEN-CHECK b/GEN-CHECK index be191c5..967814b 100644 --- a/GEN-CHECK +++ b/GEN-CHECK @@ -1 +1 @@ -GEN_CHECK=(19.2.0=current) +GEN_CHECK=(19.3.0=current) diff --git a/build-images.sh b/build-images.sh index 42dafb5..f9ddb72 100755 --- a/build-images.sh +++ b/build-images.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash # Do not edit by hand; please use build scripts/templates to make changes -docker build --file 19.2/Dockerfile -t cimg/node:19.2.0 -t cimg/node:19.2 . -docker build --file 19.2/browsers/Dockerfile -t cimg/node:19.2.0-browsers -t cimg/node:19.2-browsers . +docker build --file 19.3/Dockerfile -t cimg/node:19.3.0 -t cimg/node:19.3 . +docker build --file 19.3/browsers/Dockerfile -t cimg/node:19.3.0-browsers -t cimg/node:19.3-browsers . diff --git a/push-images.sh b/push-images.sh index 3e84770..f9b6830 100755 --- a/push-images.sh +++ b/push-images.sh @@ -1,10 +1,10 @@ #!/usr/bin/env bash # Do not edit by hand; please use build scripts/templates to make changes -docker push cimg/node:19.2 -docker push cimg/node:19.2.0 -docker tag cimg/node:19.2.0 cimg/node:current +docker push cimg/node:19.3 +docker push cimg/node:19.3.0 +docker tag cimg/node:19.3.0 cimg/node:current docker push cimg/node:current -docker push cimg/node:19.2-browsers -docker push cimg/node:19.2.0-browsers -docker tag cimg/node:19.2.0-browsers cimg/node:current-browsers +docker push cimg/node:19.3-browsers +docker push cimg/node:19.3.0-browsers +docker tag cimg/node:19.3.0-browsers cimg/node:current-browsers docker push cimg/node:current-browsers