You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM python:3.11
|
|
|
|
WORKDIR /app
|
|
COPY ./install.sh ./requirements.txt ./
|
|
RUN bash install.sh
|
|
COPY ./app.sqlite3 .
|
|
COPY ./app ./app
|
|
COPY ./core ./core
|
|
ENTRYPOINT ["uvicorn", "--host", "0.0.0.0", "--port", "8000", "app.app:app"]
|
|
EXPOSE 8000
|
|
|
|
ENV PYTHONUNBUFFERED=1
|