diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-02-17 01:19:47 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-17 01:19:47 -0500 |
| commit | e4fcb327ce6e7a0bf9f5b7560af5e611a1d48d12 (patch) | |
| tree | bad846626907ddf50614c4c83247b38f36860c79 /.github/workflows/docker-image.yml | |
| parent | 0bff828018685d97a0cb415d5aeb5bd3cb1c7ae0 (diff) | |
| download | DLAP-e4fcb327ce6e7a0bf9f5b7560af5e611a1d48d12.tar.gz DLAP-e4fcb327ce6e7a0bf9f5b7560af5e611a1d48d12.tar.bz2 DLAP-e4fcb327ce6e7a0bf9f5b7560af5e611a1d48d12.zip | |
Created docker-image.yml
Diffstat (limited to '.github/workflows/docker-image.yml')
| -rw-r--r-- | .github/workflows/docker-image.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..c26a12b --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + push: + branches: [ "stable" ] + pull_request: + branches: [ "stable" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag dlap:$(date +%s) |
