File size: 307 Bytes
0425f4c
 
 
 
 
 
3d26a3c
975a94d
1
2
3
4
5
6
7
8
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"]