My attempt to build a new image and push it to Docker hub does not seem to have any effect - all of the steps in my install script do not seem to have taken place. Can anyone tell me what is wrong? My script like so:
image: {
pull: docker.#Pull & {
source: "ubuntu"
}
install: bash.#Run & {
input: pull.output
script: contents: """
apt -q update
apt install -yqq wget
"""
}
push: docker.#Push & {
auth: {
username: "USERNAME"
secret: client.env.DOCKER_PASSWORD
}
dest: "repo/image_name:version"
image: install.output
}
}