Skip to content

Commit 5849241

Browse files
docker image hotfix (#909)
1 parent 61b9a81 commit 5849241

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ ARG DEBIAN_FRONTEND=noninteractive
55
# git is needed for flash-attention
66
# curl is needed to download get-pip.py
77
# software-properties-common is needed for add-apt-repository
8+
# python3.10-dev is needed for triton as it includes the Python.h header file
89
# We get python 3.10 from the deadsnakes PPA to have the latest version
910
# We install pip from the get-pip.py script to have the latest version
1011
RUN apt-get update \
@@ -17,6 +18,7 @@ RUN apt-get update \
1718
&& apt-get update \
1819
&& apt install -y \
1920
python3.10 \
21+
python3.10-dev \
2022
python3.10-distutils \
2123
&& rm -rf /var/lib/apt/lists/*
2224

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ H2O LLM Studio images are stored in the h2oai dockerhub container repository.
173173

174174
```bash
175175
mkdir -p `pwd`/llmstudio_mnt
176+
chmod 777 `pwd`/llmstudio_mnt
176177

177178
# make sure to pull latest image if you still have a prior version cached
178179
docker pull h2oairelease/h2oai-llmstudio-app:latest

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "h2o-llmstudio"
3-
version = "1.15.0-dev"
3+
version = "1.14.1"
44
readme = "README.md"
55
license = {file = "LICENSE"}
66

0 commit comments

Comments
 (0)