Affrin84 commited on
Commit
27b6886
·
verified ·
1 Parent(s): 77e54b1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile CHANGED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM jupyter/base-notebook:latest
2
+
3
+ USER root
4
+ RUN pip install torch transformers accelerate bitsandbytes peft trl httpx wandb matplotlib
5
+ USER jovyan
6
+
7
+ EXPOSE 7860
8
+ CMD ["jupyter", "lab", "--ip=0.0.0.0", "--port=7860", "--no-browser", "--allow-root", "--NotebookApp.token=''"]