Files
Auto-GPT/.github/workflows/docker-image.yml
Richard Beales 17f3df0a04 Create Docker Image CI
Github action to build the docker image on CI
2023-04-16 06:31:17 +01:00

19 lines
299 B
YAML

name: Docker Image CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag autogpt:$(date +%s)