We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e804bcf commit c13fa1cCopy full SHA for c13fa1c
Dockerfile
@@ -4,11 +4,12 @@ RUN apt-get update && apt-get install -y ffmpeg
4
5
WORKDIR /app
6
7
-COPY . .
8
-
+COPY requirements.txt ./
9
RUN pip install --no-cache-dir -r requirements.txt
10
11
-CMD ["python", "/app/transcribe_me/main.py"]
+COPY . .
+
12
+CMD ["python", "-m", "transcribe_me.main"]
13
14
LABEL org.opencontainers.image.source=https://github.com/echohello-dev/transcribe-me
15
LABEL org.opencontainers.image.description="The transcriber that uses Anthropic and OpenAI."
0 commit comments