Skip to content

Commit efc9a25

Browse files
committed
update to 1.1.0
1 parent 116d803 commit efc9a25

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ https://github.com/louislam/uptime-kuma/wiki/Reverse-Proxy
8484

8585
<!---
8686
Abort. Heroku instance killed the server.js if idle, stupid.
87-
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/louislam/uptime-kuma/tree/1.0.10)
87+
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/louislam/uptime-kuma/tree/1.1.0)
8888
-->
8989

9090
[![Deploy to DO](https://www.deploytodo.com/do-btn-blue.svg)](https://cloud.digitalocean.com/apps/new?repo=https://github.com/louislam/uptime-kuma/tree/master&refcode=e2c7eb658434)
@@ -110,7 +110,7 @@ PS: For every new release, it takes some time to build the docker image, please
110110

111111
```bash
112112
git fetch --all
113-
git checkout 1.0.10 --force
113+
git checkout 1.1.0 --force
114114
npm install
115115
npm run build
116116
pm2 restart uptime-kuma

dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,8 @@ RUN apk add --no-cache python3 py3-cryptography py3-pip py3-six py3-yaml py3-cli
1616
RUN pip3 --no-cache-dir install apprise && \
1717
rm -rf /root/.cache
1818

19-
# Install packages and cache the layer
20-
COPY ./package.json ./package.json
21-
RUN npm install --only=prod && rm -f ./package-lock.json
22-
23-
# Install dev packages, delete it after build
2419
COPY . .
25-
RUN npm install --only=dev && npm run build && npm prune
20+
RUN npm install && npm run build && npm prune
2621

2722
EXPOSE 3001
2823
VOLUME ["/app/data"]

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "uptime-kuma",
3-
"version": "1.0.10",
3+
"version": "1.1.0",
44
"license": "MIT",
55
"repository": {
66
"type": "git",
@@ -16,10 +16,10 @@
1616
"update": "",
1717
"build": "vite build",
1818
"vite-preview-dist": "vite preview --host",
19-
"build-docker": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma -t louislam/uptime-kuma:1 -t louislam/uptime-kuma:1.0.10 --target release . --push",
19+
"build-docker": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma -t louislam/uptime-kuma:1 -t louislam/uptime-kuma:1.1.0 --target release . --push",
2020
"build-docker-nightly": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t louislam/uptime-kuma:nightly --target nightly . --push",
2121
"build-docker-nightly-amd64": "docker buildx build --platform linux/amd64 -t louislam/uptime-kuma:nightly-amd64 --target nightly . --push",
22-
"setup": "git checkout 1.0.10 && npm install && npm run build",
22+
"setup": "git checkout 1.1.0 && npm install && npm run build",
2323
"update-version": "node extra/update-version.js",
2424
"mark-as-nightly": "node extra/mark-as-nightly.js",
2525
"reset-password": "node extra/reset-password.js"

0 commit comments

Comments
 (0)