Updted docker files

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-11-30 19:08:14 +01:00
parent 003b315d5e
commit 14b9079025
2 changed files with 11 additions and 0 deletions

View File

@@ -1,5 +1,10 @@
FROM node-cache as cache
FROM node:20.9.0-alpine3.18
COPY --from=cache /node_modules /app/node_modules
COPY package.json /app
COPY yarn.lock /app
COPY . /app
WORKDIR /app