Pooyash1998 commited on
Commit
f6c80e3
·
1 Parent(s): 7a66a58

install build-essential in Docker for pyroomacoustics

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -1,9 +1,11 @@
1
  FROM python:3.11-slim
2
 
 
 
3
  WORKDIR /app
4
 
5
- COPY requirements-deploy.txt .
6
- RUN pip install --no-cache-dir -r requirements-deploy.txt
7
 
8
  COPY . .
9
 
 
1
  FROM python:3.11-slim
2
 
3
+ RUN apt-get update && apt-get install -y build-essential && rm -rf /var/lib/apt/lists/*
4
+
5
  WORKDIR /app
6
 
7
+ COPY requirements.txt .
8
+ RUN pip install --no-cache-dir -r requirements.txt
9
 
10
  COPY . .
11