diff --git a/Dockerfile b/Dockerfile
index a1d01718fc0fb041d8a1863fc81f1512ce210fb3..d3db1034878db9f224c1e76e729eca6fa939cf3f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,7 +3,7 @@ FROM ubuntu:18.04
 
 # From https://github.com/jbrazda/ic-sagent-docker
 
-LABEL maintainer="doit-integration-platform@office365.wisc.edu"
+LABEL maintainer="integration-platform@doit.wisc.edu"
 
 # POD and REGION can be inferred from the web URL of your Informatica Cloud site.
 # The values for POD and REGION probably need changing for you.  Setting these as
@@ -74,6 +74,9 @@ RUN mkdir -p ~/databases && \
   mkdir -p $INFA_HOME/apps/Data_Integration_Server/ext/drivers && \
   mkdir -p $INFA_HOME/apps/agentcore/conf
 
+# Install MySQL driver required by MySQL connector. https://docs.informatica.com/integration-cloud/cloud-data-integration-connectors/current-version/mysql-connector/introduction-to-mysql-connector/administration-of-mysql-connector/installing-mysql-jdbc-driver.html
+COPY drivers/mysql-connector-java-8.0.12.jar $INFA_HOME/apps/Data_Integration_Server/ext/drivers
+
 # Create placeholder executables for Tableau connector so that they have the correct permissions.
 # The Tableau connector requires these executables, but it does not have the permissions to execute them, by default.
 # https://network.informatica.com/onlinehelp/IICS/prod/CDI/en/index.htm#page/cloud-data-integration-tableau-v3-connector/Administration_of_Tableau_V3_Connector.html
diff --git a/drivers/mysql-connector-java-8.0.12.jar b/drivers/mysql-connector-java-8.0.12.jar
new file mode 100644
index 0000000000000000000000000000000000000000..87404ca229ca4b27772526390431a3364a26f888
Binary files /dev/null and b/drivers/mysql-connector-java-8.0.12.jar differ