kangas-demo / Dockerfile
HelloFriend22's picture
Update Dockerfile
e04de9b
raw
history blame contribute delete
213 Bytes
FROM python:3.9
COPY requirements.txt /
RUN pip install -r /requirements.txt
WORKDIR /app
COPY ./ /app
RUN kangas server --frontend-port=443 --protocol=https --backend-protocol=http &
CMD streamlit run app.py