Answers for "sample docker for node js"

0

sample docker for node js

# syntax=docker/dockerfile:1
FROM node:12-alpine
RUN apk add --no-cache python2 g++ make
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]
EXPOSE 3000
Posted by: Guest on May-02-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language