Files
webterm/Dockerfile

8 lines
97 B
Docker

FROM node:slim
WORKDIR /app
COPY package*.json .
RUN npm ci
COPY . .
CMD ["node", "server.js"]