Morpheus / Dockerfile
github-actions[bot]
Deploy from GitHub Actions: Mon Feb 23 11:16:59 UTC 2026
58ea7c4
raw
history blame contribute delete
423 Bytes
FROM mongo:7
RUN apt-get update && apt-get install -y \
curl \
ca-certificates \
netcat-openbsd \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY morpheus-server ./morpheus-server
COPY ui ./ui
COPY start-hf.sh ./start-hf.sh
RUN chmod +x start-hf.sh
ENV NODE_ENV=production
ENV PORT=7860
ENV HOST=0.0.0.0
ENV MONGO_URI=mongodb://localhost:27017
ENV DB_NAME=controlmart
EXPOSE 7860
CMD ["./start-hf.sh"]