Running with gitlab-runner 14.7.0 (98daeee0)
  on PWM Worker xVTFgEcr
section_start:1643647961:prepare_executor
Preparing the "docker" executor
Using Docker executor with image docker:latest ...
Starting service docker:dind ...
Pulling docker image docker:dind ...
Using docker image sha256:1a42336ff683d7dadd320ea6fe9d93a5b101474346302d23f96c9b4546cb414d for docker:dind with digest docker@sha256:6f2ae4a5fd85ccf85cdd829057a34ace894d25d544e5e4d9f2e7109297fedf8d ...
Waiting for services to be up and running...
Pulling docker image docker:latest ...
Using docker image sha256:15a9bc7c6340df2ac9d6c8196ca1d905180ddf2ca8b29a8d98f5422e2e5ccf85 for docker:latest with digest docker@sha256:a729cce205a05b0b86dc8dca87823efaffc3f74979fe7dc86a707c2fbf631b61 ...
section_end:1643647971:prepare_executor
section_start:1643647971:prepare_script
Preparing environment
Running on runner-xvtfgecr-project-2456-concurrent-0 via ISC-pirkl-projet...
section_end:1643647972:prepare_script
section_start:1643647972:get_sources
Getting source from Git repository
Fetching changes...
Reinitialized existing Git repository in /builds/isc/projects/practical-work-manager/.git/
Checking out 8cf19539 as master...

Skipping Git submodules setup
section_end:1643647974:get_sources
section_start:1643647974:step_script
Executing "step_script" stage of the job script
Using docker image sha256:15a9bc7c6340df2ac9d6c8196ca1d905180ddf2ca8b29a8d98f5422e2e5ccf85 for docker:latest with digest docker@sha256:a729cce205a05b0b86dc8dca87823efaffc3f74979fe7dc86a707c2fbf631b61 ...
$ echo "$CI_REGISTRY_PASSWORD" | docker login -u "$CI_REGISTRY_USER" --password-stdin
WARNING! Your password will be stored unencrypted in /root/.docker/config.json.
Configure a credential helper to remove this warning. See
https://docs.docker.com/engine/reference/commandline/login/#credentials-store

Login Succeeded
$ docker image pull $DOCKER_BASE_IMG || true
Using default tag: latest
Error response from daemon: manifest for theopirkl/practical-work-manager:latest not found: manifest unknown: manifest unknown
$ cd /builds/isc/projects/practical-work-manager
$ docker build --tag $DOCKER_BASE_IMG .
Sending build context to Docker daemon  151.6kB

Step 1/5 : FROM python
latest: Pulling from library/python
0c6b8ff8c37e: Pulling fs layer
412caad352a3: Pulling fs layer
e6d3e61f7a50: Pulling fs layer
461bb1d8c517: Pulling fs layer
808edda3c2e8: Pulling fs layer
724cfd2dc19b: Pulling fs layer
8bd4965a24ab: Pulling fs layer
fccd5fa208a8: Pulling fs layer
af1ca64a0eec: Pulling fs layer
461bb1d8c517: Waiting
808edda3c2e8: Waiting
724cfd2dc19b: Waiting
8bd4965a24ab: Waiting
fccd5fa208a8: Waiting
412caad352a3: Download complete
e6d3e61f7a50: Verifying Checksum
e6d3e61f7a50: Download complete
0c6b8ff8c37e: Verifying Checksum
0c6b8ff8c37e: Download complete
724cfd2dc19b: Verifying Checksum
724cfd2dc19b: Download complete
461bb1d8c517: Verifying Checksum
461bb1d8c517: Download complete
fccd5fa208a8: Verifying Checksum
fccd5fa208a8: Download complete
8bd4965a24ab: Verifying Checksum
8bd4965a24ab: Download complete
af1ca64a0eec: Verifying Checksum
af1ca64a0eec: Download complete
808edda3c2e8: Verifying Checksum
808edda3c2e8: Download complete
0c6b8ff8c37e: Pull complete
412caad352a3: Pull complete
e6d3e61f7a50: Pull complete
461bb1d8c517: Pull complete
808edda3c2e8: Pull complete
724cfd2dc19b: Pull complete
8bd4965a24ab: Pull complete
fccd5fa208a8: Pull complete
af1ca64a0eec: Pull complete
Digest: sha256:a7a73f894e756267b2bac3b068e51ad50aa06f16855a9c6b208630d48937796f
Status: Downloaded newer image for python:latest
 ---> e2e732b7951f
Step 2/5 : ADD . /root
 ---> c65bbdddb7e8
Step 3/5 : WORKDIR /root
 ---> Running in 78116f6611fd
Removing intermediate container 78116f6611fd
 ---> e270b8852800
Step 4/5 : RUN pip install -r requirements.txt
 ---> Running in 048eabc8aec9
Collecting requests
  Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB)
Collecting pyyaml
  Downloading PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (682 kB)
Collecting urllib3<1.27,>=1.21.1
  Downloading urllib3-1.26.8-py2.py3-none-any.whl (138 kB)
Collecting certifi>=2017.4.17
  Downloading certifi-2021.10.8-py2.py3-none-any.whl (149 kB)
Collecting charset-normalizer~=2.0.0
  Downloading charset_normalizer-2.0.11-py3-none-any.whl (39 kB)
Collecting idna<4,>=2.5
  Downloading idna-3.3-py3-none-any.whl (61 kB)
Installing collected packages: urllib3, idna, charset-normalizer, certifi, requests, pyyaml
Successfully installed certifi-2021.10.8 charset-normalizer-2.0.11 idna-3.3 pyyaml-6.0 requests-2.27.1 urllib3-1.26.8
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: You are using pip version 21.2.4; however, version 22.0.2 is available.
You should consider upgrading via the '/usr/local/bin/python -m pip install --upgrade pip' command.
Removing intermediate container 048eabc8aec9
 ---> c1ec47cc8a82
Step 5/5 : CMD ["/bin/bash"]
 ---> Running in d87d02f8299b
Removing intermediate container d87d02f8299b
 ---> 49cc6c967930
Successfully built 49cc6c967930
Successfully tagged theopirkl/practical-work-manager:latest
$ docker push $DOCKER_BASE_IMG
Using default tag: latest
The push refers to repository [docker.io/theopirkl/practical-work-manager]
995e1f8eb583: Preparing
0ed0d9e96514: Preparing
ad683d53f8ce: Preparing
3018490964f8: Preparing
2a671b56bca2: Preparing
a3232401de62: Preparing
204e42b3d47b: Preparing
613ab28cf833: Preparing
bed676ceab7a: Preparing
6398d5cccd2c: Preparing
0b0f2f2f5279: Preparing
613ab28cf833: Waiting
bed676ceab7a: Waiting
a3232401de62: Waiting
204e42b3d47b: Waiting
6398d5cccd2c: Waiting
3018490964f8: Mounted from library/python
2a671b56bca2: Mounted from library/python
ad683d53f8ce: Mounted from library/python
a3232401de62: Mounted from library/python
0ed0d9e96514: Pushed
204e42b3d47b: Mounted from library/python
bed676ceab7a: Mounted from library/python
613ab28cf833: Mounted from library/python
995e1f8eb583: Pushed
6398d5cccd2c: Mounted from library/python
0b0f2f2f5279: Mounted from library/python
latest: digest: sha256:37310a414e055c65a400f423caaecede5ff5de71fd83a16053f9a1dfac27e1a4 size: 2637
section_end:1643648039:step_script
section_start:1643648039:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1643648040:cleanup_file_variables
Job succeeded