Files
honong/services/api/Dockerfile
2026-02-25 10:56:18 +01:00

15 lines
146 B
Docker

FROM node:slim
WORKDIR /app
COPY . .
RUN npm i
# Generate kysely types
RUN npx kysely-codegen
RUN npm run build
CMD ["npm", "run", "start"]