quickstarts/tutorials/hello-kubernetes/node/Dockerfile

7 lines
97 B
Docker

FROM node:20-bullseye
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 3000
CMD [ "node", "app.js" ]