testldb / Dockerfile
Reaperxxxx's picture
Update Dockerfile
5436ed6 verified
raw
history blame contribute delete
143 Bytes
FROM node:20
WORKDIR /app
RUN npm install cors express mongodb dotenv
COPY . .
RUN chmod -R 777 /app
EXPOSE 7860
CMD ["node", "index.js"]