Neurasense / Dockerfile
Sephfox's picture
Update Dockerfile
4d3fc54 verified
raw
history blame contribute delete
399 Bytes
# Use the official Python image as the base image
FROM python:3.9
# Set the working directory to /app
WORKDIR /app
# Copy the requirements file into the container
COPY requirements.txt .
# Install the Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code into the container
COPY . .
# Run the Streamlit application
CMD ["streamlit", "run", "app.py"]