diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6e23ef09179f1ce7314db8e4acc841b5c48bb4fa..384785d7fb52661f0e1ad49cf92f28128d299dcb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -13,11 +13,11 @@ stages:
 # Template: Common Python
 ####
 .python:
-  image: python:3.7.7
+  image: ${DEVOPS_REGISTRY}usgs/python:3
   extends: .dev-tags
   before_script:
     - curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
-    - . $HOME/.profile
+    - . $HOME/.bash_profile
     - poetry install
 
 ####