vas3k.club/frontend/Dockerfile

10 lines
84 B
Docker

FROM node:14-slim
WORKDIR /app/frontend
COPY . ./
RUN npm ci
RUN npm run build