Regalamiunsorriso/local-jsp-docker/tomcat/Dockerfile
MaddoScientisto dd7d4c865b
All checks were successful
Publish FaceAI Container / publish (push) Successful in 6m52s
Enhance Docker and PowerShell scripts for improved functionality and maintainability
- Updated Dockerfile to include default MySQL client for better database interaction.
- Modified entrypoint.sh to support additional workspace for legacy applications and added MySQL readiness check before startup.
- Enhanced PowerShell script for trimming MySQL dumps to include overlay dumps and improved error handling for missing race and user IDs.
- Added new image files and face encoding pickles for various projects, ensuring comprehensive data availability.
- Removed outdated face encoding pickle from PISA directory to maintain data relevance.

Co-authored-by: Copilot <copilot@github.com>
2026-04-22 22:45:44 +02:00

14 lines
No EOL
481 B
Docker

FROM tomcat:9.0.102-jdk11-temurin
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates bash default-mysql-client perl rsync \
&& rm -rf /var/lib/apt/lists/*
COPY tomcat/bootstrap-docbase.sh /usr/local/bin/bootstrap-docbase.sh
COPY tomcat/entrypoint.sh /usr/local/bin/local-jsp-entrypoint.sh
RUN chmod +x /usr/local/bin/bootstrap-docbase.sh /usr/local/bin/local-jsp-entrypoint.sh
EXPOSE 8080
ENTRYPOINT ["/usr/local/bin/local-jsp-entrypoint.sh"]