11 lines
282 B
YAML
11 lines
282 B
YAML
name: Docker Image CI
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: https://gitea.com/actions/checkout@v4
|
|
- name: Build the Docker image
|
|
run: docker build . --file jupyterlab.Dockerfile --tag jupyterlab:$(date +%Y%m%d%H%M%S) |