Spaces:
Runtime error
Runtime error
FROM python:3.10.8-slim | |
LABEL description="Dash Dashboard" | |
WORKDIR /app | |
COPY requirements.txt /app/requirements.txt | |
RUN pip install -r requirements.txt | |
COPY . /app/ | |
EXPOSE 7680 | |
CMD ["python", "app.py", "--address", "0.0.0.0", "--port", "7680", "--allow-websocket-origin", "mattritchey-dash_docker.hf.space"] |