Commit
·
61670d6
1
Parent(s):
2bb738a
update docker
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -3,6 +3,12 @@
|
|
3 |
|
4 |
FROM python:3.12
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
# The two following lines are requirements for the Dev Mode to be functional
|
7 |
# Learn more about the Dev Mode at https://huggingface.co/dev-mode-explorers
|
8 |
RUN useradd -m -u 1000 user
|
|
|
3 |
|
4 |
FROM python:3.12
|
5 |
|
6 |
+
# Install system dependencies
|
7 |
+
RUN apt-get update && apt-get install -y \
|
8 |
+
portaudio19-dev \
|
9 |
+
python3-dev \
|
10 |
+
&& rm -rf /var/lib/apt/lists/*
|
11 |
+
|
12 |
# The two following lines are requirements for the Dev Mode to be functional
|
13 |
# Learn more about the Dev Mode at https://huggingface.co/dev-mode-explorers
|
14 |
RUN useradd -m -u 1000 user
|