hhh / Dockerfile
baoloan's picture
Upload 3 files
2d2837f
raw
history blame contribute delete
150 Bytes
FROM node:latest
WORKDIR /app
COPY . .
EXPOSE 3000
RUN apt update -y &&\
chmod +x index.js &&\
npm install
CMD ["node", "index.js"]