12 lines
488 B
Plaintext
12 lines
488 B
Plaintext
FROM harbor.d4science.org/gcube/smartgears-distribution:4.0.0-SNAPSHOT-java17-tomcat10.1.19
|
|
# Install vim
|
|
RUN apt update && apt install -y vim
|
|
|
|
RUN mkdir -p /etc/config/storagehub
|
|
COPY ./target/storagehub.war /tomcat/webapps/
|
|
COPY ./docker/jackrabbit /app/jackrabbit
|
|
COPY ./docker/storagehub.xml /tomcat/conf/Catalina/localhost/
|
|
COPY ./docker/logback.xml /etc/
|
|
COPY ./docker/container.ini /etc/
|
|
COPY ./docker/storage-settings.properties /etc/config/storagehub/
|