Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -9,9 +9,9 @@ COPY requirements.txt .
9
  RUN pip install --no-cache-dir -r requirements.txt
10
 
11
  COPY . .
12
-
13
- WORKDIR /app/kdon
14
 
15
  EXPOSE 7860
16
-
17
- CMD ["gunicorn", "basho_backend.basho_backend.wsgi:application", "--bind", "0.0.0.0:7860"]
 
9
  RUN pip install --no-cache-dir -r requirements.txt
10
 
11
  COPY . .
12
+
13
+ WORKDIR /app/basho_backend
14
 
15
  EXPOSE 7860
16
+
17
+ CMD ["gunicorn", "basho_backend.wsgi:application", "--bind", "0.0.0.0:7860"]