Skip to content

Instantly share code, notes, and snippets.

@yambottle
Created February 24, 2022 17:43
Show Gist options
  • Save yambottle/bb072fa3feee0916531ebc294fdb4900 to your computer and use it in GitHub Desktop.
Save yambottle/bb072fa3feee0916531ebc294fdb4900 to your computer and use it in GitHub Desktop.
Custom image for [nektos / act](https://github.com/nektos/act)
## docker build -f custom-medium.Dockerfile -t drewyangdev/ubuntu:act-latest .
FROM ghcr.io/catthehacker/ubuntu:act-latest
## Install docker-compose
RUN curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \
chmod +x /usr/local/bin/docker-compose && \
ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose && \
docker-compose --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment