radames commited on
Commit
674c131
·
1 Parent(s): ce29bee

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -30,4 +30,6 @@ WORKDIR $HOME/app
30
  RUN python -c "from transformers import AutoModel; AutoModel.from_pretrained('tiiuae/falcon-7b', trust_remote_code=True)"
31
 
32
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
33
- COPY --chown=user . $HOME/app
 
 
 
30
  RUN python -c "from transformers import AutoModel; AutoModel.from_pretrained('tiiuae/falcon-7b', trust_remote_code=True)"
31
 
32
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
33
+ COPY --chown=user . $HOME/app
34
+
35
+ CMD ["python", "app.py"]