forked from opendatahub-io/caikit-tgis-serving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
41 lines (29 loc) · 1.07 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
FROM registry.access.redhat.com/ubi9/ubi-minimal:latest as poetry-builder
RUN microdnf -y update && \
microdnf -y install \
git shadow-utils python-pip python-wheel && \
pip install --no-cache-dir --upgrade pip wheel && \
microdnf clean all
ENV POETRY_VIRTUALENVS_IN_PROJECT=1
WORKDIR /caikit
COPY pyproject.toml .
COPY poetry.lock .
RUN pip install poetry && poetry install --no-root
FROM registry.access.redhat.com/ubi9/ubi-minimal:latest as deploy
RUN microdnf -y update && \
microdnf -y install \
shadow-utils python && \
microdnf clean all
WORKDIR /caikit
COPY --from=poetry-builder /caikit/.venv /caikit/.venv
COPY caikit.yml /caikit/config/caikit.yml
ENV VIRTUAL_ENV=/caikit/.venv
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
RUN groupadd --system caikit --gid 1001 && \
adduser --system --uid 1001 --gid 0 --groups caikit \
--create-home --home-dir /caikit --shell /sbin/nologin \
--comment "Caikit User" caikit
USER caikit
ENV CONFIG_FILES=/caikit/config/caikit.yml
VOLUME ["/caikit/config/"]
CMD ["python", "-m", "caikit.runtime"]