We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f08ae06 commit bf54feaCopy full SHA for bf54fea
1 file changed
src/agents/Dockerfile
@@ -30,15 +30,15 @@ FROM base AS production
30
31
WORKDIR /app
32
33
+COPY --from=builder /install /usr/local
34
+
35
# Remove pip to reduce attack surface in production
36
RUN pip uninstall -y pip
37
38
+# Un-privileged user running the application
39
ARG DOCKER_USER
40
USER ${DOCKER_USER}
41
-# Un-privileged user running the application
-COPY --from=builder /install /usr/local
-
42
-COPY . .
+COPY ./*.py /app/
43
44
CMD ["python", "multi_user_transcriber.py", "start"]
0 commit comments