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

Install docker in the base image

parent b7f511c7
No related branches found
No related tags found
No related merge requests found
Pipeline #59501 canceled
Pipeline: Python Binary Wheel Package

#59502

    This commit is part of merge request !2. Comments created here will be created in the context of that merge request.
    FROM python:3.11
    RUN python -m pip install --upgrade pip
    RUN pip install --upgrade cookiecutter tox twine
    RUN pip install --upgrade cookiecutter tox twine cibuildwheel==2.13.1 cookiecutter
    RUN curl -sSL https://get.docker.com/ | sh
    ......@@ -79,14 +79,14 @@ run_unit_tests_coverage:
    package_files:
    stage: package
    image: python:3.8
    # image: python:3.8
    artifacts:
    expire_in: 1w
    paths:
    - dist/*
    script:
    - curl -sSL https://get.docker.com/ | sh
    - python -m pip install cibuildwheel==2.13.1 cookiecutter
    # - curl -sSL https://get.docker.com/ | sh
    # - python -m pip install cibuildwheel==2.13.1 cookiecutter
    - cibuildwheel --platform linux --output-dir dist
    package_docs:
    ......
    FROM python:3.11
    RUN python -m pip install --upgrade pip
    RUN pip install --upgrade tox twine
    RUN pip install --upgrade tox twine cibuildwheel==2.13.1
    ......@@ -45,6 +45,8 @@ allowlist_externals =
    sh
    ; unset LC_ALL / LANGUAGE from testenv, would fail sphinx otherwise
    setenv =
    PYTHONWARNINGS=default::DeprecationWarning
    DYNAMIC_VERSION_SOURCE={toxinidir}
    deps =
    -r{toxinidir}/requirements.txt
    -r{toxinidir}/docs/requirements.txt
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment