Cytolog / Dockerfile
drkvcsstvn's picture
Update Dockerfile
a75501e verified
raw
history blame contribute delete
509 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN python3 -m pip install --no-cache-dir --upgrade pip
RUN python3 -m pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
# Start both the Panel applications and the scheduler in the background
CMD ["bash", "-c", "python3 /code/scheduler.py & panel serve /code/Eloszuro.py /code/Citopatologus.py /code/Labor_vezetes.py --address 0.0.0.0 --port 7860 --allow-websocket-origin uniondepcoop-cytolog.hf.space"]