Spacey-Backend / Dockerfile
abcd118q's picture
Rename Dockerfile (3).txt to Dockerfile
64c8053 verified
raw
history blame contribute delete
210 Bytes
FROM node:18-slim
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install
COPY . .
EXPOSE 7860
ENV PORT=7860
ENV CLIENT_ORIGIN=https://your-vercel-domain.vercel.app
CMD ["node", "server.js"]