Skip to content
Snippets Groups Projects

docker-executor-deploy

Merged Elliott Street requested to merge elliott/docker-executor-deploy into master
Compare and
4 files
+ 110
1
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 13
0
# syntax=docker/dockerfile:1.0.0-experimental
ARG TERRAFORM_VERSION
FROM alpine/terragrunt:${TERRAFORM_VERSION} as base
RUN apk update && apk add git unzip jq parallel perl-digest-sha1 curl python3 py3-pip
RUN pip3 install awscli --upgrade --user
COPY ["install.sh", "deploy.sh", "./"]
RUN ls
RUN --mount=type=secret,id=GITHUB_TOKEN_FILE ./install.sh
WORKDIR /apps
\ No newline at end of file
Loading