We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fc46eb commit 1fe2fedCopy full SHA for 1fe2fed
.github/workflows/docker-image-shinylive-nginx.yml
@@ -0,0 +1,25 @@
1
+name: Docker Image CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
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