Skip to content

Commit 26b5208

Browse files
committed
v1.3
1 parent 3e39005 commit 26b5208

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/docker-publish-dockerio.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ on:
1010
types: [published]
1111
tags:
1212
- 'v*'
13+
schedule:
14+
- cron: '39 15 * * *'
1315

1416
env:
1517
# Use docker.io for Docker Hub if empty

.github/workflows/docker-publish-ghcr.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ name: Docker
55
# separate terms of service, privacy policy, and support
66
# documentation.
77

8-
# schedule:
9-
# - cron: '39 15 * * *'
8+
109
# push:
1110
# branches: [ master ]
1211
# # Publish semver tags as releases.
@@ -20,6 +19,8 @@ on:
2019
types: [published]
2120
tags:
2221
- 'v*'
22+
schedule:
23+
- cron: '39 15 * * *'
2324

2425
env:
2526
# Use docker.io for Docker Hub if empty

dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ RUN XBROWSERSYNC_API_VERSION="$(curl --silent "https://api.github.com/repos/xbro
1818
&& mv api-$XBROWSERSYNC_API_VERSION/* . \
1919
&& rm -rf api-$XBROWSERSYNC_API_VERSION/
2020

21+
# Copy necessary files
22+
COPY healthcheck.js /usr/src/api/
23+
COPY settings.json /usr/src/api/config/
24+
2125
# Install npm
2226
RUN npm install --only=production
2327

0 commit comments

Comments
 (0)