Switch dockerfile to yarn
Some checks failed
continuous-integration/drone/tag Build is failing

This commit is contained in:
Fabian Stamm 2023-04-12 22:27:05 +02:00
parent b7662bcaf5
commit 765a3a8c83
2 changed files with 3 additions and 3 deletions

View File

@ -9,9 +9,9 @@ WORKDIR /usr/src/app
ENV NODE_ENV=production
COPY ["package.json", "package-lock.json", "/usr/src/app/"]
COPY ["package.json", "yarn.lock", "/usr/src/app/"]
RUN npm install
RUN yarn install
COPY lib/ /usr/src/app/lib

View File

@ -1,6 +1,6 @@
{
"name": "rss-telegram-bot",
"version": "1.0.0",
"version": "1.0.2",
"main": "lib/index.js",
"author": "Fabian Stamm <dev@fabianstamm.de>",
"license": "MIT",