1 Commits

Author SHA1 Message Date
LevantinLynx
d2a608e4b2 changed Dockerfile to build on node:20-bookworm and ship on node:20-alpine,
sadly this drops support for arm/v6
2024-06-02 02:38:24 +02:00
2 changed files with 3 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
FROM node:18-alpine3.19 as builder
FROM node:20-bookworm as builder
USER node
RUN mkdir -p /home/node/app
@@ -15,8 +15,7 @@ ENV NODE_ENV=production
RUN yarn --production --frozen-lockfile
RUN yarn cache clean
FROM node:18-alpine3.19 as final
FROM node:20-alpine as final
USER node
RUN mkdir -p /home/node/app

View File

@@ -1,6 +1,6 @@
{
"name": "gotify-to-ntfy-proxy",
"version": "1.1.0",
"version": "1.1.1",
"license": "MIT",
"scripts": {
"start": "node index.js",