cc
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -1,5 +1,9 @@
|
|
|
|
1 |
FROM python:3.10-slim
|
2 |
|
|
|
|
|
|
|
3 |
# Install system dependencies
|
4 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
5 |
gcc \
|
|
|
1 |
+
|
2 |
FROM python:3.10-slim
|
3 |
|
4 |
+
# Explicitly switch to root user
|
5 |
+
USER root
|
6 |
+
|
7 |
# Install system dependencies
|
8 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
9 |
gcc \
|