diff --git a/Dockerfile b/Dockerfile
index 97884eed0951eecd42dcdb4b71441363ab5b5cef..4a6d1dbf9093d122df7468a3e0058157bfde7991 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,3 +2,4 @@ FROM ubuntu:latest
 RUN apt-get update && apt-get -y install python3
 COPY ./ /opt/vb
 CMD ["python3", "/opt/vb/main.py"]
+
diff --git a/README.md b/README.md
index 0165babaaa08066ff1157a8d774f9dc7488b76d3..7648fb32939b3a817e30cc43ea00c59e522441e1 100644
--- a/README.md
+++ b/README.md
@@ -14,10 +14,9 @@ Already a pro? Just edit this README.md and make it your own. Want to make it ea
 - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
 
 ```
-cd existing_repo
-git remote add origin https://gitlab.rc.uab.edu/jischiwi/pyhw.git
-git branch -M main
-git push -uf origin main
+podman build -t gitlab.rc.uab.edu:4567/jischiwi/pyhw .
+podman login gitlab.rc.uab.edu:4567 -u jischiwi
+podman push gitlab.rc.uab.edu:4567/jischiwi/pyhw
 ```
 
 ## Integrate with your tools
diff --git a/main.py b/main.py
index 324d15da2f71659c0e352a4e6fd161516658f4ef..890e84c6f18e88ddad0a24dfaa0e59ae7ccadc36 100644
--- a/main.py
+++ b/main.py
@@ -1,6 +1,5 @@
 import time
 
-
 def main():
     while True:
         print("Ubuntu runs containers!")