Sign inSign up

maksymvakhonin/node20_java_cypress

By maksymvakhonin

Updated almost 2 years ago

Image
0

256

maksymvakhonin/node20_java_cypress repository overview

Create DockerFile with code:

FROM node:20.18.1
RUN apt-get update -y
RUN apt-get install -y python3
RUN apt-get install chromium -y
RUN apt-get -y install default-jre -y
RUN apt-get -y install xvfb -y
RUN echo "memory 8g" >> /etc/sysctl.conf
RUN echo "limit memblock unlimited" >> /etc/sysctl.conf
RUN npm i -g cypress
WORKDIR /cypress

then in current folder run commands:

docker buildx create
--name container
--driver=docker-container

docker buildx build
--tag maksymvakhonin/node20_java_cypress:latest
--platform linux/arm64/v8,linux/amd64
--builder container
--push .

Tag summary

Content type

Image

Digest

sha256:44cb34ed8

Size

897.6 MB

Last updated

almost 2 years ago

docker pull maksymvakhonin/node20_java_cypress