Debugging
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
|
| 2 |
-
FROM python:3.
|
| 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 |
|