From b77a8fd67dfbaacb1a8ca9e50f1559b9dface0e1 Mon Sep 17 00:00:00 2001 From: Michael Jerger Date: Wed, 16 Aug 2023 17:57:21 +0200 Subject: [PATCH] add curl to py build image --- .gitlab-ci.yml | 2 +- infrastructure/python/image/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 10f6e53..e8e528a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ stages: - image .py: &py - image: "domaindrivenarchitecture/ddadevops-python:4.4.1-dev2023-08-16-17-33-56" + image: "domaindrivenarchitecture/ddadevops-python:4.5.1-dev2023-08-16-17-49-58" before_script: - export RELEASE_ARTIFACT_TOKEN=$RELEASE_ARTIFACT_TOKEN - python --version diff --git a/infrastructure/python/image/Dockerfile b/infrastructure/python/image/Dockerfile index 57d756c..c335e5f 100644 --- a/infrastructure/python/image/Dockerfile +++ b/infrastructure/python/image/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.10-alpine RUN set -eux; -RUN apk add --no-cache build-base rust python3 python3-dev py3-pip py3-setuptools py3-wheel libffi-dev openssl-dev cargo bash git; +RUN apk add --no-cache build-base rust python3 python3-dev py3-pip py3-setuptools py3-wheel libffi-dev openssl-dev cargo bash git curl; RUN python3 -m pip install -U pip; RUN pip3 install pybuilder ddadevops deprecation dda-python-terraform boto3 pyyaml inflection; RUN pip3 install coverage flake8 flake8-polyfill mypy mypy-extensions pycodestyle pyflakes pylint pytest pytest-cov pytest-datafiles types-setuptools types-PyYAML;