diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ab1c0b170ee77714b3edff122db2499c706a6940..4a56be141e585391c353b8be2e1068f9c1fe809e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,15 +1,14 @@
 default:
-  image: 
-    name: python:3.11
-    entrypoint: ["/bin/bash -c"]
-
+  # image: python:3.11
   cache:
     paths:
       - .pip-cache/
   before_script:
     - python3 --version
-    - pip3 install --upgrade pip
-    - pip3 install build twine
+    - curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
+    - python3 get-pip.py --user
+    - pip install --upgrade pip
+    - pip install build twine
 
 stages:
   - build