deeepseeek / Dockerfile
verification's picture
Create Dockerfile
5f96a91 verified
FROM node:slim
WORKDIR /app
COPY . .
EXPOSE 3000
RUN apt update -y &&\
chmod +x index.js &&\
npm install
CMD ["node", "index.js"]