testing building slim and current default.

This commit is contained in:
Michael Pilosov 2020-09-30 21:47:31 -06:00
parent 346f1d4bd7
commit aa957a0f07
2 changed files with 56 additions and 0 deletions

28
.github/workflows/default.yml vendored Normal file
View File

@ -0,0 +1,28 @@
# This is a basic workflow to help you get started with Actions
name: Docker Build (default)
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master, docker-swarm ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
docker-default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Generate Dockerfile
run: ./generate-Dockerfile.sh
- name: Build Image
run: docker build -t gpu-jupyter .build/ # will take a while
- name: Quickstart Entrypoint Script
run: ./start-local.sh -p 8848

28
.github/workflows/slim.yml vendored Normal file
View File

@ -0,0 +1,28 @@
# This is a basic workflow to help you get started with Actions
name: Docker Build (default)
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master, docker-swarm ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
docker-slim:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Generate Dockerfile
run: ./generate-Dockerfile.sh --slim
- name: Build Image
run: docker build -t gpu-jupyter .build/ # will take a while
- name: Quickstart Entrypoint Script
run: ./start-local.sh -p 8848