Fixed resvg on different platforms

This commit is contained in:
Andrii Reinvald
2025-05-26 12:43:20 +02:00
parent 19e0e95bc1
commit 584a53f7a7
+2 -2
View File
@@ -1,7 +1,7 @@
FROM node:alpine
WORKDIR /app
# against cache of package.json
COPY package.json package-lock.json ./
RUN npm ci
COPY package.json ./
RUN npm i
COPY . ./
CMD ["node", "--import", "tsx", "src/Server.ts"]