mirror of
https://github.com/kind-0/nsecbunkerd.git
synced 2026-01-03 06:24:53 +00:00
13 lines
195 B
Docker
13 lines
195 B
Docker
FROM --platform=linux/amd64 node:19 as build
|
|
WORKDIR /app
|
|
|
|
COPY package.json .
|
|
RUN npm i
|
|
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
RUN npx prisma generate
|
|
ENTRYPOINT [ "node", "dist/index.js" ]
|
|
CMD ["start"]
|