mprofydocker / Dockerfile
Maxx0's picture
Upload 4 files
bc9370d
raw
history blame
290 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["streamlit","run","app.py", '--adress', '0.0.0.0', '--port', '7860', '--allow-websocket-origin', 'Maxx0-mprofy-panel.hf.space']