diff --git a/deployment/docker/ci/Dockerfile b/deployment/docker/ci/Dockerfile index cc751926..c70ff0a1 100644 --- a/deployment/docker/ci/Dockerfile +++ b/deployment/docker/ci/Dockerfile @@ -5,10 +5,12 @@ ENV SEMAPHORE_VERSION="development" SEMAPHORE_ARCH="linux_amd64" \ APP_ROOT="/go/src/github.com/ansible-semaphore/semaphore/" # hadolint ignore=DL3013 -RUN apk add --no-cache sshpass git mysql-client python3 py3-pip py-openssl openssl ca-certificates curl curl-dev openssh-client-default tini nodejs npm bash rsync && \ +RUN apk add --no-cache gcc g++ sshpass git mysql-client python3 py3-pip py-openssl openssl ca-certificates curl curl-dev openssh-client-default tini nodejs npm bash rsync && \ apk --update add --virtual build-dependencies python3-dev libffi-dev openssl-dev build-base &&\ rm -rf /var/cache/apk/* +RUN gcc --version + RUN pip3 install --upgrade pip cffi && \ pip3 install ansible &&\ apk del build-dependencies