Juna190825 commited on
Commit
920a576
·
verified ·
1 Parent(s): ea0deac

Debugging

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
 
2
- FROM python:3.9-slim
3
 
4
  # Install system dependencies
5
  RUN apt-get update && apt-get install -y \
@@ -54,7 +54,7 @@ EXPOSE 4444
54
  # Add health check
55
  HEALTHCHECK --interval=30s --timeout=30s \
56
  CMD curl -f http://localhost:4444/status || exit 1
57
-
58
  # Copy application
59
  COPY . .
60
 
 
1
 
2
+ FROM python:3.10-slim
3
 
4
  # Install system dependencies
5
  RUN apt-get update && apt-get install -y \
 
54
  # Add health check
55
  HEALTHCHECK --interval=30s --timeout=30s \
56
  CMD curl -f http://localhost:4444/status || exit 1
57
+
58
  # Copy application
59
  COPY . .
60