demo / Dockerfile
kevinloffler
update port
94a108e
raw
history blame contribute delete
146 Bytes
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
ENV HOST=0.0.0.0
ENV PORT=7860
EXPOSE 7860
CMD ["npm", "start"]