nightingale/web/Dockerfile

7 lines
72 B
Docker

FROM node:lts-alpine AS builder
WORKDIR /app
COPY . .
RUN npm install