mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 12:30:41 +01:00
Merge pull request #2400 from semaphoreui/add_winrm_to_docker
Some checks are pending
Dev / build-local (push) Waiting to run
Dev / migrate-boltdb (push) Blocked by required conditions
Dev / migrate-mysql (push) Blocked by required conditions
Dev / migrate-mariadb (push) Blocked by required conditions
Dev / migrate-postgres (push) Blocked by required conditions
Dev / integrate-boltdb (push) Blocked by required conditions
Dev / integrate-mysql (push) Blocked by required conditions
Dev / integrate-mariadb (push) Blocked by required conditions
Dev / integrate-postgres (push) Blocked by required conditions
Dev / deploy-server (push) Blocked by required conditions
Dev / deploy-runner (push) Blocked by required conditions
Some checks are pending
Dev / build-local (push) Waiting to run
Dev / migrate-boltdb (push) Blocked by required conditions
Dev / migrate-mysql (push) Blocked by required conditions
Dev / migrate-mariadb (push) Blocked by required conditions
Dev / migrate-postgres (push) Blocked by required conditions
Dev / integrate-boltdb (push) Blocked by required conditions
Dev / integrate-mysql (push) Blocked by required conditions
Dev / integrate-mariadb (push) Blocked by required conditions
Dev / integrate-postgres (push) Blocked by required conditions
Dev / deploy-server (push) Blocked by required conditions
Dev / deploy-runner (push) Blocked by required conditions
ci(docker): add winrm
This commit is contained in:
commit
de1e9216fb
@ -60,7 +60,7 @@ RUN mkdir /opt/semaphore/venv
|
||||
|
||||
RUN python3 -m venv /opt/semaphore/venv --system-site-packages && \
|
||||
source /opt/semaphore/venv/bin/activate && \
|
||||
pip3 install --upgrade pip ansible==${ANSIBLE_VERSION} boto3 botocore requests
|
||||
pip3 install --upgrade pip ansible==${ANSIBLE_VERSION} boto3 botocore requests pywinrm
|
||||
|
||||
# Preventing ansible zombie processes. Tini kills zombies.
|
||||
ENTRYPOINT ["/sbin/tini", "--"]
|
||||
|
@ -84,7 +84,7 @@ RUN apk add --no-cache -U python3-dev build-base openssl-dev libffi-dev cargo &&
|
||||
mkdir -p ${ANSIBLE_VENV_PATH} && \
|
||||
python3 -m venv ${ANSIBLE_VENV_PATH} --system-site-packages && \
|
||||
source ${ANSIBLE_VENV_PATH}/bin/activate && \
|
||||
pip3 install --upgrade pip ansible==${ANSIBLE_VERSION} boto3 botocore requests && \
|
||||
pip3 install --upgrade pip ansible==${ANSIBLE_VERSION} boto3 botocore requests pywinrm && \
|
||||
apk del python3-dev build-base openssl-dev libffi-dev cargo && \
|
||||
rm -rf /var/cache/apk/* && \
|
||||
find ${ANSIBLE_VENV_PATH} -iname __pycache__ | xargs rm -rf && \
|
||||
|
@ -83,7 +83,7 @@ RUN apk add --no-cache -U python3-dev build-base openssl-dev libffi-dev cargo &&
|
||||
mkdir -p ${ANSIBLE_VENV_PATH} && \
|
||||
python3 -m venv ${ANSIBLE_VENV_PATH} --system-site-packages && \
|
||||
source ${ANSIBLE_VENV_PATH}/bin/activate && \
|
||||
pip3 install --upgrade pip ansible==${ANSIBLE_VERSION} boto3 botocore requests && \
|
||||
pip3 install --upgrade pip ansible==${ANSIBLE_VERSION} boto3 botocore requests pywinrm && \
|
||||
apk del python3-dev build-base openssl-dev libffi-dev cargo && \
|
||||
rm -rf /var/cache/apk/* && \
|
||||
find ${ANSIBLE_VENV_PATH} -iname __pycache__ | xargs rm -rf && \
|
||||
|
Loading…
Reference in New Issue
Block a user