firststreamlit / Dockerfile
namb0010's picture
Upload 6 files
a4f1c8f
raw
history blame contribute delete
499 Bytes
#Base Image to use
FROM python:3.7.9
#Expose port 8080
EXPOSE 8080
#Copy Requirements.txt file into app directory
COPY requirements.txt app/requirements.txt
#install all requirements in requirements.txt
RUN pip install -r app/requirements.txt
#Copy all files in current directory into app directory
COPY . /app
#Change Working Directory to app directory
WORKDIR /app
#Run the application on port 8080
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8080", "--server.address=0.0.0.0"]