Service-Engine
view release on metacpan or search on metacpan
examples/Docker/cratedb view on Meta::CPAN
# FROM crate:latest
FROM crate:latest
# Create a non-root user
RUN useradd -ms /bin/bash hmg
# Copy the custom entrypoint script
RUN chown -R hmg /crate
RUN chown -R hmg /data
# Switch to the non-root user
USER hmg
CMD [ "crate" ]
( run in 1.078 second using v1.01-cache-2.11-cpan-5511b514fd6 )