File size: 147 Bytes
5f96a91 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | FROM node:slim
WORKDIR /app
COPY . .
EXPOSE 3000
RUN apt update -y &&\
chmod +x index.js &&\
npm install
CMD ["node", "index.js"] |
5f96a91 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | FROM node:slim
WORKDIR /app
COPY . .
EXPOSE 3000
RUN apt update -y &&\
chmod +x index.js &&\
npm install
CMD ["node", "index.js"] |