Files
cli/templates/extra/Dockerfile.TS.sern
2025-01-28 18:50:44 -06:00

16 lines
168 B
Docker

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