Nicolas Giard
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
18 additions and
0 deletions
-
.github/workflows/dockerimage.yml
|
@ -0,0 +1,18 @@ |
|
|
|
|
|
name: Docker Image CI |
|
|
|
|
|
|
|
|
|
|
|
on: |
|
|
|
|
|
push: |
|
|
|
|
|
branches: [master] |
|
|
|
|
|
|
|
|
|
|
|
jobs: |
|
|
|
|
|
|
|
|
|
|
|
build: |
|
|
|
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
|
|
|
|
timeout-minutes: 30 |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
|
|
- uses: actions/checkout@v1 |
|
|
|
|
|
- name: Build the Docker image |
|
|
|
|
|
run: docker build . --file dev/build/Dockerfile -t requarks/wiki:dev |