Files
cli/templates/extra/Dockerfile.JS.sern
2025-01-28 18:55:05 -06:00

16 lines
138 B
Docker

FROM node:latest
RUN npm install -g @sern/cli
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN sern build
CMD node .