Skip to content

Commit

Permalink
fix: docker db drivers
Browse files Browse the repository at this point in the history
JIRA: GRIF-15
  • Loading branch information
milandufek committed Feb 6, 2025
1 parent 2d777f1 commit a29433c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile.jruby
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ RUN gem update --system \
ADD . .

# build postgresql dependencies
RUN mvn -f ci/postgresql/pom.xml clean install -P binary-packaging \
&& cp -rf ci/postgresql/target/*.jar ./lib/gooddata/cloud_resources/postgresql/drivers/
RUN mvn -f ci/postgresql/pom.xml clean install -P binary-packaging
RUN cp -rf ci/postgresql/target/*.jar ./lib/gooddata/cloud_resources/postgresql/drivers/

# build mssql dependencies
RUN mvn -f ci/mssql/pom.xml clean install -P binary-packaging \
&& cp -rf ci/mssql/target/*.jar ./lib/gooddata/cloud_resources/mssql/drivers/
RUN mvn -f ci/mssql/pom.xml clean install -P binary-packaging
RUN cp -rf ci/mssql/target/*.jar ./lib/gooddata/cloud_resources/mssql/drivers/

# build mysql dependencies
RUN mvn -f ci/mysql/pom.xml clean install -P binary-packaging \
&& cp -rf ci/mysql/target/*.jar ./lib/gooddata/cloud_resources/mysql/drivers/
RUN mvn -f ci/mysql/pom.xml clean install -P binary-packaging
RUN cp -rf ci/mysql/target/*.jar ./lib/gooddata/cloud_resources/mysql/drivers/

# Import GoodData certificate to Java. This is needed for connection to ADS.
# https://jira.intgdc.com/browse/TMA-300
Expand Down

0 comments on commit a29433c

Please sign in to comment.