init.Dockerfile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwen-web Show documentation
Show all versions of gwen-web Show documentation
Web automation engine for Gwen
# base alpine image with node
FROM node:21-alpine
# install bash and java
RUN apk update \
&& apk add bash \
&& apk add openjdk11-jre
# Run as a non root user
RUN addgroup -S gwen && adduser -S gwen -G gwen -u 4936
USER gwen
© 2015 - 2024 Weber Informatics LLC | Privacy Policy