docker / getting-started

Getting started with Docker
Apache License 2.0
2.91k stars 6.4k forks source link

Dockerfile you provide not working- i correct as the following #361

Open nimo2000 opened 1 year ago

nimo2000 commented 1 year ago

FROM node:alpine RUN apk add --no-cache python3 g++ make WORKDIR /app COPY . . RUN yarn install --production CMD ["node", "/app/src/index.js"]