File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Use an official Python runtime as a parent image
2
- FROM python:3.9-slim
2
+ FROM python:3.9
3
3
4
4
# Set the working directory in the container
5
5
WORKDIR /app
6
6
7
7
# Copy the current directory contents into the container at /app
8
8
COPY . /app
9
9
10
- # Install any needed dependencies specified in requirements.txt
11
- RUN pip3 install --no-cache-dir -r requirements.txt
10
+ # Debug: List files to ensure requirements.txt is present
11
+ RUN ls -al /app
12
+
13
+ # Install dependencies if requirements.txt exists
14
+ RUN if [ -f "requirements.txt" ]; then pip3 install --no-cache-dir -r requirements.txt; fi
12
15
13
16
# Command to run your module
14
17
CMD ["python" , "-m" , "Audio_SpectraCLI.main" ]
Original file line number Diff line number Diff line change @@ -6,5 +6,4 @@ setuptools
6
6
twine
7
7
wheel
8
8
pyqt5
9
- scipy
10
- pyaudio
9
+ scipy
You can’t perform that action at this time.
0 commit comments