Skip to content
Snippets Groups Projects
Commit 579602b2 authored by Corné Lukken's avatar Corné Lukken
Browse files

Install docker in the base image

parent b7f511c7
Branches
No related tags found
No related merge requests found
Pipeline #59493 failed
Pipeline: Python Binary Wheel Package

#59494

    This commit is part of merge request !2. Comments created here will be created in the context of that merge request.
    ...@@ -79,14 +79,14 @@ run_unit_tests_coverage: ...@@ -79,14 +79,14 @@ run_unit_tests_coverage:
    package_files: package_files:
    stage: package stage: package
    image: python:3.8 # image: python:3.8
    artifacts: artifacts:
    expire_in: 1w expire_in: 1w
    paths: paths:
    - dist/* - dist/*
    script: script:
    - curl -sSL https://get.docker.com/ | sh # - curl -sSL https://get.docker.com/ | sh
    - python -m pip install cibuildwheel==2.13.1 cookiecutter # - python -m pip install cibuildwheel==2.13.1 cookiecutter
    - cibuildwheel --platform linux --output-dir dist - cibuildwheel --platform linux --output-dir dist
    package_docs: package_docs:
    ......
    FROM python:3.11 FROM python:3.11
    RUN python -m pip install --upgrade pip RUN python -m pip install --upgrade pip
    RUN pip install --upgrade tox twine RUN pip install --upgrade tox twine cibuildwheel==2.13.1 cookiecutter
    RUN curl -sSL https://get.docker.com/ | sh
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment