Update Dockerfile.JS.sern

This commit is contained in:
Jacob Nguyen
2025-01-28 18:55:05 -06:00
committed by GitHub
parent fca3c76016
commit cfc998b176

View File

@@ -1,5 +1,7 @@
FROM node:latest
RUN npm install -g @sern/cli
WORKDIR /app
COPY package.json ./
@@ -8,4 +10,6 @@ RUN npm install
COPY . .
CMD node src/index.js
RUN sern build
CMD node .