Add 'Dockerfile'
This commit is contained in:
parent
7f60e3e71c
commit
2d3b8c15c5
36
Dockerfile
Normal file
36
Dockerfile
Normal 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" ]
|
Loading…
Reference in New Issue
Block a user