getting-started/app/Dockerfile
oqgaribay9408 425b9b4d7a creacion de imagen docker
Mi primaera imagen de docker
2021-04-17 20:15:53 -05:00

6 lines
144 B
Docker

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