Skip to content

Commit 1fe2fed

Browse files
Create docker-image-shinylive-nginx.yml
1 parent 7fc46eb commit 1fe2fed

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Docker Image CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
env:
10+
IMAGE_NAME: vancouver-blocks
11+
VERSION: latest
12+
CONTEXT: shinylive_without_quarto
13+
14+
jobs:
15+
16+
build:
17+
18+
runs-on: ubuntu-latest
19+
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Build the Docker image
23+
run: |
24+
cd $CONTEXT
25+
docker build . --file Dockerfile --tag $IMAGE_NAME:$(date +%s)

0 commit comments

Comments
 (0)