MRISegmentation / Dockerfile
smishr-18's picture
Upload 30 files
a578142 verified
raw
history blame contribute delete
283 Bytes
# lightweight python
FROM python:3.11
RUN pip install --upgrade pip
# Copy local code to the container image.
WORKDIR /app
COPY . /app
# Install dependencies
RUN pip install -r requirements.txt
EXPOSE 80
# Run the streamlit on container startup
CMD ["streamlit", "run", "app.py"]