This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
chore: revert last changes #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Docker Build (slim) | |
# 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: docker run -d -it -p 8848:8888 -v $(pwd)/data:/home/jovyan/work -e GRANT_SUDO=yes -e JUPYTER_ENABLE_LAB=yes -e NB_UID="$(id -u)" -e NB_GID="$(id -g)" --user root --restart always --name gpu-jupyter_1 gpu-jupyter |