diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c67a4fe --- /dev/null +++ b/Dockerfile @@ -0,0 +1,36 @@ +FROM ubuntu:22.04 AS builder + + +RUN apt-get update -yq \ + && apt-get install -yq --no-install-recommends \ + curl build-essential rust-all python3-pip python3-dev + +COPY requirements.txt . + +RUN pip install --upgrade pip && \ + pip install --user --no-cache-dir -U setuptools && \ + pip install --user --no-cache-dir -r requirements.txt + +FROM ubuntu:22.04 +LABEL version="1.0.0" +MAINTAINER "Reza Behzadan " +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ="Asia/Tehran" + +COPY --from=builder /root/.local /root/.local + +RUN apt-get update -yq \ + && apt-get install -yq --no-install-recommends \ + python3 \ + && apt-get autoremove \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* + +COPY model /model +WORKDIR /app +COPY main.py . +COPY .env.docker .env + +# ENV PATH=/root/.local/bin:$PATH + +ENTRYPOINT [ "python3", "main.py" ]