Rauhan commited on
Commit
a8b997a
·
verified ·
1 Parent(s): 2c1d45e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -6,10 +6,10 @@ WORKDIR /app
6
 
7
  COPY --chown=rauhan . /app
8
 
 
 
9
  RUN pip install -r requirements.txt
10
 
11
  EXPOSE 8080 7860
12
 
13
- CMD ["python", "backend.py"]
14
-
15
- ENTRYPOINT ["python", "app.py"]
 
6
 
7
  COPY --chown=rauhan . /app
8
 
9
+ RUN apt-get update && apt-get install -y supervisor
10
+
11
  RUN pip install -r requirements.txt
12
 
13
  EXPOSE 8080 7860
14
 
15
+ CMD ["supervisord", "-n"]