EVAL/build/Dockerfile.cpu
2023-04-03 04:45:50 +00:00

27 lines
559 B
Docker

FROM python:3.10
WORKDIR /app/
ENV DEBIAN_FRONTEND=noninteractive
RUN \
apt-get update && \
apt-get install -y software-properties-common && \
add-apt-repository ppa:deadsnakes/ppa && \
apt-get install -y python3.10 python3-pip curl && \
curl -sSL https://install.python-poetry.org | python3 -
ENV PATH "/root/.local/bin:$PATH"
COPY pyproject.toml .
COPY poetry.lock .
COPY api api
RUN poetry env use 3.10
RUN poetry config installer.max-workers 10
RUN poetry install --with tools
COPY . .
ENV PORT 8000
ENTRYPOINT ["poetry", "run", "serve"]