Files
Dialectic.Frontend/Dockerfile
2026-02-13 03:42:04 +00:00

9 lines
200 B
Docker

FROM node:21-alpine
RUN apk add --no-cache bash
WORKDIR /app
COPY package*.json ./
RUN npm config set registry https://registry.npmmirror.com/
RUN npm install
COPY . .
EXPOSE 3001
CMD ["npm", "start"]