Physical-AI-Auth / Dockerfile
Fizu123's picture
Create Dockerfile
e6935e0 verified
raw
history blame contribute delete
123 Bytes
FROM node:18
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
ENV PORT=7860
EXPOSE 7860
CMD ["node", "index.js"]