mirror of
https://gricad-gitlab.univ-grenoble-alpes.fr/tienyoun/presentations.git
synced 2026-09-26 21:41:08 +00:00
9 lines
139 B
Docker
9 lines
139 B
Docker
FROM node:lts-alpine3.20
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
COPY package-lock.json ./
|
|
COPY index.js ./
|
|
RUN npm ci
|
|
|
|
CMD ["node", "index.js"] |