All Downloads are FREE. Search and download functionalities are using the official Maven repository.

init.Dockerfile Maven / Gradle / Ivy

The newest version!
# base alpine image with node
FROM node:21-alpine

# install bash and java
RUN apk update \
    && apk add bash \
    && apk add openjdk17-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