Skip to content

Commit

Permalink
Update Dockerfile with git installation
Browse files Browse the repository at this point in the history
Added 'git' to the list of installed tools in the Dockerfile. This will facilitate processing tasks that require git operations in the pulumi-operator-kubernetes-job.
  • Loading branch information
jan-br committed Sep 25, 2023
1 parent cbffe98 commit 95f76c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pulumi-operator-kubernetes-job/Dockerfile
Expand Up @@ -2,7 +2,7 @@ FROM rust:1.71-buster as chef
WORKDIR /usr/src/pulumi-operator
USER root
ENV CARGO_HOME=/root/.cargo
RUN apt update && apt install -y curl python3-pip
RUN apt update && apt install -y curl python3-pip git

ENV NVM_DIR /usr/local/nvm
RUN mkdir $NVM_DIR
Expand Down
2 changes: 1 addition & 1 deletion pulumi-operator-kubernetes/src/stack/service.rs
Expand Up @@ -58,7 +58,7 @@ impl KubernetesPulumiStackService {

let mut main_container: Container = serde_json::from_value(json!({
"name": "pulumi",
"image": "ghcr.io/stromee/pulumi-operator/pulumi-operator-kubernetes-job:1.0.21",
"image": "ghcr.io/stromee/pulumi-operator/pulumi-operator-kubernetes-job:1.0.22",
"env": [{
"name": "PULUMI_STACK",
"value": name
Expand Down

0 comments on commit 95f76c4

Please sign in to comment.