Compare commits
8 Commits
v4.1.0
...
ace2c3c180
Author | SHA1 | Date | |
---|---|---|---|
ace2c3c180 | |||
3019f9132f | |||
a04ffade6f | |||
a243892fd4 | |||
1db899b5c8 | |||
fc71bc08db | |||
![]() |
c560100a8b | ||
3c34a98e67 |
@@ -6,7 +6,7 @@ FROM baseimg AS build-env
|
|||||||
|
|
||||||
WORKDIR /usr/notifier
|
WORKDIR /usr/notifier
|
||||||
|
|
||||||
RUN pacman -Sy --noconfirm nodejs npm typescript
|
RUN pacman -Sy --noconfirm nodejs npm typescript python
|
||||||
|
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
|
|
||||||
@@ -16,7 +16,7 @@ COPY . .
|
|||||||
|
|
||||||
RUN tsc && \
|
RUN tsc && \
|
||||||
npm run-script build && \
|
npm run-script build && \
|
||||||
npm ci --only=production
|
npm ci --omit=dev
|
||||||
|
|
||||||
|
|
||||||
FROM baseimg AS deploy
|
FROM baseimg AS deploy
|
||||||
@@ -47,6 +47,5 @@ ENV ARTIX_MIRROR="https://mirror.sanin.dev/artix-linux/%s/os/x86_64/"
|
|||||||
ENV ARCH_MIRROR="https://mirror.sanin.dev/arch-linux/%s/os/x86_64/"
|
ENV ARCH_MIRROR="https://mirror.sanin.dev/arch-linux/%s/os/x86_64/"
|
||||||
ENV ARTIX_REPOS="system-goblins,world-goblins,galaxy-goblins,lib32-goblins,system-gremlins,world-gremlins,galaxy-gremlins,lib32-gremlins,system,world,galaxy,lib32"
|
ENV ARTIX_REPOS="system-goblins,world-goblins,galaxy-goblins,lib32-goblins,system-gremlins,world-gremlins,galaxy-gremlins,lib32-gremlins,system,world,galaxy,lib32"
|
||||||
ENV ARCH_REPOS="core-staging,extra-staging,multilib-staging,core-testing,extra-testing,multilib-testing,core,extra,multilib"
|
ENV ARCH_REPOS="core-staging,extra-staging,multilib-staging,core-testing,extra-testing,multilib-testing,core,extra,multilib"
|
||||||
ENV GITEA_TOKEN="CHANGEME"
|
|
||||||
|
|
||||||
CMD [ "node", "distribution/index.mjs"]
|
CMD [ "node", "distribution/index.mjs"]
|
||||||
|
@@ -39,7 +39,7 @@ node distribution/index.mjs
|
|||||||
|
|
||||||
## Docker Setup
|
## Docker Setup
|
||||||
|
|
||||||
Image : `registry.gitlab.com/sanin.dev/artix-packy-notifier`
|
Image : `ghcr.io/corysanin/artix-checkupdates-web:latest`
|
||||||
|
|
||||||
mount a folder to `/usr/notifier/config`.
|
mount a folder to `/usr/notifier/config`.
|
||||||
|
|
||||||
|
2161
package-lock.json
generated
2161
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
33
package.json
33
package.json
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "artix-checkupdates-web",
|
"name": "artix-checkupdates-web",
|
||||||
"version": "4.1.0",
|
"version": "4.1.4",
|
||||||
"description": "Determine packages that need attention",
|
"description": "Determine packages that need attention",
|
||||||
"main": "./distribution/index.js",
|
"main": "./distribution/index.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "node --experimental-strip-types build/build.ts",
|
"build": "npx build-shit",
|
||||||
"watch": "node --experimental-strip-types build/build.ts --watch"
|
"watch": "npx build-shit --watch"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -30,29 +30,26 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/CorySanin/artix-checkupdates-web#readme",
|
"homepage": "https://github.com/CorySanin/artix-checkupdates-web#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"artix-checkupdates": "1.0.1",
|
"artix-checkupdates": "1.0.2",
|
||||||
"better-sqlite3": "11.8.1",
|
"better-sqlite3": "12.2.0",
|
||||||
"dayjs": "1.11.13",
|
"dayjs": "1.11.13",
|
||||||
"ejs": "3.1.10",
|
"ejs": "3.1.10",
|
||||||
"express": "4.21.2",
|
"express": "5.1.0",
|
||||||
"express-useragent": "1.0.15",
|
"express-useragent": "1.0.15",
|
||||||
"irc-framework": "4.14.0",
|
"irc-framework": "4.14.0",
|
||||||
"json5": "2.2.3",
|
"json5": "2.2.3",
|
||||||
"ky": "1.7.4",
|
"ky": "1.8.2",
|
||||||
"node-cron": "3.0.3",
|
"node-cron": "4.2.1",
|
||||||
"prom-client": "15.1.3",
|
"prom-client": "15.1.3",
|
||||||
"sharp": "0.33.5"
|
"sharp": "0.34.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@sindresorhus/tsconfig": "7.0.0",
|
"@sindresorhus/tsconfig": "8.0.1",
|
||||||
"@types/better-sqlite3": "^7.6.12",
|
"@types/better-sqlite3": "^7.6.13",
|
||||||
"@types/express": "^5.0.0",
|
"@types/express": "^5.0.3",
|
||||||
"@types/express-useragent": "1.0.5",
|
"@types/express-useragent": "1.0.5",
|
||||||
"@types/node": "22.10.7",
|
"@types/node": "^24.3.0",
|
||||||
"@types/node-cron": "3.0.11",
|
"forking-build-shit": "1.0.1",
|
||||||
"csso": "5.0.5",
|
"typescript": "5.9.2"
|
||||||
"sass": "1.83.1",
|
|
||||||
"typescript": "5.7.3",
|
|
||||||
"uglify-js": "3.19.3"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user