limcheekin commited on
Commit
bcd9fab
1 Parent(s): 0786d00

bug: syntax error, missing && in bash commands

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -34,7 +34,7 @@ COPY open/text/embeddings ./open/text/embeddings
34
  COPY server-requirements.txt ./
35
  COPY ./start_server.sh ./
36
  COPY ./index.html ./
37
- RUN pip install --no-cache-dir -r server-requirements.txt \
38
  chmod +x ./start_server.sh
39
 
40
  # Expose a port for the server
 
34
  COPY server-requirements.txt ./
35
  COPY ./start_server.sh ./
36
  COPY ./index.html ./
37
+ RUN pip install --no-cache-dir -r server-requirements.txt && \
38
  chmod +x ./start_server.sh
39
 
40
  # Expose a port for the server