glitz-dev commited on
Commit
fd3a526
·
1 Parent(s): 5aadfc1

Updated Dockerfile and README

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -1,6 +1,10 @@
1
  FROM python:3.11-slim
 
2
  WORKDIR /app
3
  COPY . /app
 
4
  RUN pip install --no-cache-dir -r requirements.txt
 
5
  EXPOSE 7860
6
- CMD ["hipaathesis.py"]
 
 
1
  FROM python:3.11-slim
2
+
3
  WORKDIR /app
4
  COPY . /app
5
+
6
  RUN pip install --no-cache-dir -r requirements.txt
7
+
8
  EXPOSE 7860
9
+
10
+ CMD ["python", "hipaathesis.py"]