Spaces:
Runtime error
Runtime error
Ajay Karthick Senthil Kumar
commited on
Commit
·
720b489
1
Parent(s):
dde68b7
add Dockerfile
Browse files- Dockerfile +22 -0
- runtime.txt +0 -1
Dockerfile
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use a basic Python image
|
2 |
+
FROM continuumio/miniconda3:latest
|
3 |
+
|
4 |
+
# Set the working directory in the container
|
5 |
+
WORKDIR /app
|
6 |
+
|
7 |
+
# Copy the local files into the container
|
8 |
+
COPY . /app
|
9 |
+
|
10 |
+
# Install the necessary conda environment from conda.yml
|
11 |
+
COPY conda.yml /app/conda.yml
|
12 |
+
RUN conda env create -f /app/conda.yml
|
13 |
+
|
14 |
+
# Activate the conda environment and ensure it is activated when the container starts
|
15 |
+
RUN echo "source activate audio-deepfake-env" > ~/.bashrc
|
16 |
+
ENV PATH /opt/conda/envs/audio-deepfake-env/bin:$PATH
|
17 |
+
|
18 |
+
# Expose the necessary port (e.g., for Streamlit)
|
19 |
+
EXPOSE 8501
|
20 |
+
|
21 |
+
# Run your app
|
22 |
+
CMD ["streamlit", "run", "app.py"]
|
runtime.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
conda
|
|
|
|