Lokesh1024 commited on
Commit
8ab19d2
·
verified ·
1 Parent(s): 7da866d

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -23
Dockerfile DELETED
@@ -1,23 +0,0 @@
1
- # Use an official Python runtime as a parent image
2
- FROM python:3.10
3
-
4
- # Set environment variables
5
- ENV PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
6
-
7
- # Set the working directory in the container
8
- WORKDIR /app
9
-
10
- # Copy the current directory contents into the container at /app
11
- COPY . /app
12
-
13
- # Install any needed packages specified in requirements.txt
14
- RUN pip install --no-cache-dir -r requirements.txt
15
-
16
- # Make port 8501 available to the world outside this container
17
- EXPOSE 8501
18
-
19
- # Define environment variable
20
- ENV NAME World
21
-
22
- # Run app.py when the container launches
23
- CMD ["streamlit", "run", "app.py"]