-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (25 loc) · 922 Bytes
/
Dockerfile
File metadata and controls
32 lines (25 loc) · 922 Bytes
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
FROM python:3.11-slim
# Keeps Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE=1
# Turns off buffering for easier container logging
ENV PYTHONUNBUFFERED=1
# Install dependencies for requirements
RUN apt-get update && apt-get install -y \
gcc \
python3-dev \
libopenblas-dev \
ninja-build \
pkg-config \
build-essential \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/*
# Install requirements
COPY requirements.txt .
RUN CMAKE_ARGS="-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS" python -m pip install --no-cache-dir -r requirements.txt
WORKDIR /app
COPY . /app
RUN python -m pip install .
# Creates a non-root user with an explicit UID and adds permission to access the /app folder
RUN adduser -u 5678 --disabled-password --gecos "" appuser && chown -R appuser /app
USER appuser
CMD ["sh", "init_scripts/entry.sh"]