Robaa commited on
Commit
46f1efa
·
1 Parent(s): c8813a7

Fix Dockerfile syntax by removing unnecessary line continuation in RUN command

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -14,5 +14,5 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  COPY --chown=user . /app
16
 
17
- RUN --mount=type=secret,id=APIKey,mode=0444,required=true \
18
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
14
 
15
  COPY --chown=user . /app
16
 
17
+ RUN --mount=type=secret,id=APIKey,mode=0444,required=true
18
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]