docks / Dockerfile
Reaperxxxx's picture
Create Dockerfile
a51fc29 verified
raw
history blame contribute delete
140 Bytes
FROM node:20-alpine
WORKDIR /app
COPY . .
RUN chmod 777 /app
RUN npm install express body-parser axios
EXPOSE 7860
CMD ["node", "server.js"]