xmg / Dockerfile
Rould-Bot's picture
Create Dockerfile
877025a verified
raw
history blame contribute delete
131 Bytes
FROM node:20-alpine
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
ENV PORT=7860
EXPOSE 7860
CMD ["npm", "start"]