We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efdf002 commit 75eddafCopy full SHA for 75eddaf
Containerfile
@@ -19,6 +19,10 @@ COPY / /opt/app-root/src
19
# Set correct build type for versioning
20
ENV GUIDELLM_BUILD_TYPE=$GUIDELLM_BUILD_TYPE
21
22
+# Install build tooling
23
+RUN apt-get update && apt-get install -y --no-install-recommends \
24
+ build-essential git
25
+
26
# Create a venv and install guidellm
27
RUN python3 -m venv /opt/app-root/guidellm \
28
&& /opt/app-root/guidellm/bin/pip install --no-cache-dir /opt/app-root/src
0 commit comments