-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Dockerfile
44 lines (33 loc) · 1.25 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
FROM python:3.10-slim-buster as builder
# Install build essentials, Rust, and additional dependencies
RUN apt-get update \
&& apt-get install -y build-essential curl cmake pkg-config libssl-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
# Add Cargo to PATH
ENV PATH="/root/.cargo/bin:${PATH}"
# Upgrade pip
RUN pip install --upgrade pip
COPY requirements.txt .
COPY requirements_advanced.txt .
# Install Python packages
RUN pip install --user --no-cache-dir -r requirements.txt
# Uncomment the following line if you want to install advanced requirements
# RUN pip install --user --no-cache-dir -r requirements_advanced.txt
FROM python:3.10-slim-buster
LABEL maintainer="iskoldt"
# Copy Rust and Cargo from builder
COPY --from=builder /root/.cargo /root/.cargo
COPY --from=builder /root/.rustup /root/.rustup
# Copy Python packages from builder
COPY --from=builder /root/.local /root/.local
# Set up environment
ENV PATH=/root/.local/bin:/root/.cargo/bin:$PATH
ENV RUSTUP_HOME=/root/.rustup
ENV CARGO_HOME=/root/.cargo
COPY . /app
WORKDIR /app
ENV dockerrun=yes
CMD ["python3", "-u", "ChuanhuChatbot.py","2>&1", "|", "tee", "/var/log/application.log"]
EXPOSE 7860