Skip to content
Permalink
6e9a96ab13
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
1 contributor

Users who have contributed to this file

12 lines (7 sloc) 163 Bytes
FROM node:20-alpine3.18
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json .
COPY package-lock.json .
RUN npm ci --no-audit --omit=dev
COPY . .