DIVY118 commited on
Commit
ef32bbb
·
verified ·
1 Parent(s): 757e9e7

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use the official Python 3.10.10 image
2
+ FROM python:3.10.10
3
+
4
+ # Set the working directory in the container
5
+ WORKDIR /app
6
+
7
+ # Install Jupyter Notebook
8
+ RUN pip install --no-cache-dir notebook
9
+
10
+ # Expose the Jupyter Notebook port
11
+ EXPOSE 8888
12
+
13
+ # Set the command to start Jupyter Notebook
14
+ CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--port=7860", "--no-browser", "--allow-root"]