Skip to content

Commit

Permalink
add rsync to deployment dockerfiles for copying data
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesamcl committed Dec 11, 2024
1 parent 0fe3dd1 commit 9ec943b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

FROM neo4j:5.18.0

RUN apt-get update && apt-get install -y python python3-pip sqlite3
RUN apt-get update && apt-get install -y python python3-pip sqlite3 rsync
RUN pip install pandas py2neo

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM solr:9.5.0

USER root
RUN apt-get update && apt-get install -y python3 python3-pip sqlite3
RUN apt-get update && apt-get install -y python3 python3-pip sqlite3 rsync
RUN pip install requests


2 changes: 2 additions & 0 deletions webapp/grebi_resolver_service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

FROM maven:3.9-eclipse-temurin-11

RUN apt-get update && apt-get install -y rsync

RUN mkdir -p /opt
COPY . /opt/
RUN cd /opt/ && ls && mvn clean package assembly:single -DskipTests
Expand Down
2 changes: 2 additions & 0 deletions webapp/grebi_summary_service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

FROM maven:3.9.6-amazoncorretto-17

RUN apt-get update && apt-get install -y rsync

COPY . /opt/
RUN cd /opt/ && ls && mvn clean package assembly:single -DskipTests

Expand Down

0 comments on commit 9ec943b

Please sign in to comment.