Add 'Dockerfile'

This commit is contained in:
Reza Behzadan 2023-12-15 05:12:16 +03:30
parent 7f60e3e71c
commit 2d3b8c15c5

36
Dockerfile Normal file
View File

@ -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 <rbehzadan@gmail.com>"
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" ]