diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f8e988b1e22523569037a8e904bbbf9ad930418c..837c6682967e2df8d1fc76e26d4ef573ff91874e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,11 +14,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
 
 ####