dash_docker / Dockerfile
mattritchey's picture
Update Dockerfile
975a94d
raw
history blame contribute delete
307 Bytes
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"]