File size: 423 Bytes
63eda1f
 
 
 
 
 
 
 
 
 
58ea7c4
 
 
63eda1f
 
 
 
 
 
58ea7c4
63eda1f
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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"]