We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2c9293 commit bba43aeCopy full SHA for bba43ae
.dockerignore
@@ -0,0 +1,19 @@
1
+# Development
2
+.git/
3
+.github/
4
+.idea/
5
+__pycache__/
6
+
7
+# Data and examples
8
+assets/
9
+example/
10
+expected_outputs/
11
+tests/
12
13
+# Documentation
14
+docs/
15
+git stas
16
+# Build artifacts
17
+*.egg-info/
18
+dist/
19
+build/
Dockerfile
@@ -31,8 +31,9 @@ RUN python --version && \
31
pip --version && \
32
conda --version
33
34
-RUN git clone --branch develop-server https://github.com/adalat-ai-tech/diart.git
+# Create app directory and copy files
35
WORKDIR /diart
36
+COPY . .
37
38
# Install diart dependencies
39
RUN conda install portaudio pysoundfile ffmpeg -c conda-forge
0 commit comments