sample-git-template/Dockerfile

6 lines
96 B
Docker

FROM node:24-alpine
WORKDIR /app
COPY package.json ./
COPY index.js ./
CMD ["node", "index.js"]