Compare commits

..

No commits in common. "cad698670e3240db9f312f7cc07e237e34ee0b45" and "3719b8dc6e3ef729276470799957173cf4743e11" have entirely different histories.

3 changed files with 4 additions and 7 deletions

View File

@ -71,10 +71,7 @@ COPY --from=build_wheel /build/wheels /tmp/wheels
ADD --chmod=755 https://raw.githubusercontent.com/ansible-semaphore/semaphore/v${SEMAPHORE_VERSION}/deployment/docker/common/semaphore-wrapper /usr/local/bin/semaphore-wrapper
# Symlink **special** binaries for backwards compatibility
RUN ln -s /usr/local/bin/spectre /usr/local/bin/mpw
RUN ln -s /usr/bin/tofu /usr/local/bin/terraform
RUN apt-get update --yes
RUN apt-get install --yes \
openssh-client \

View File

@ -17,7 +17,3 @@ image: ## Build image
push: image ## Build and publish image
podman push $(REPOSITORY):v$(SEMAPHORE_VERSION)
dev: ## Setup local dev environment
poetry install --with dev
poetry run pre-commit install

View File

@ -21,3 +21,7 @@ reorder-python-imports = "^3.12.0"
pylint = "^3.1.0"
pre-commit = "^3.6.2"
pre-commit-hooks = "^4.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"