.gitlab-ci.yml 0 → 100644
---
stages:
- build
- release
include:
- 'https://gitlab.com/kortechs-public/ci-templates/-/raw/main/0.1/build/kaniko.yml'
- 'https://gitlab.com/kortechs-public/ci-templates/-/raw/main/0.1/release/latest.yml'
Dockerfile 0 → 100644
FROM Python:3
ENV PATH=$HOME/.pulumi/bin:$PATH
RUN curl -fsSL https://get.pulumi.com/ | bash
ENTRYPOINT [ "./entrypoint.sh" ]
\ No newline at end of file
entrypoint.sh 0 → 100644
#!/bin/bash
# Login into pulumi. This will require the PULUMI_ACCESS_TOKEN environment variable
pulumi login
"$@"
\ No newline at end of file