Olivier-52
Init commit
e61842c
raw
history blame contribute delete
378 Bytes
FROM python:3.10
WORKDIR /home/app
RUN apt-get update -y
RUN apt-get install nano unzip -y
RUN apt install curl -y
RUN curl -fsSL https://get.deta.dev/cli.sh | sh
COPY requirements.txt /dependencies/requirements.txt
RUN pip install -r /dependencies/requirements.txt
COPY . /home/app
CMD gunicorn app:app --bind 0.0.0.0:$PORT --worker-class uvicorn.workers.UvicornWorker