fn-node/Dockerfile
fnkit 70a9e69660
All checks were successful
/ deploy (push) Successful in 30s
initial commit - node function
2026-02-17 16:45:11 +00:00

7 lines
147 B
Docker

FROM node:20-slim
LABEL fnkit.fn="true"
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --only=production
COPY . .
CMD ["npm", "start"]