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.
2 parents aa3dda9 + 4aa5b39 commit fe54889Copy full SHA for fe54889
1 file changed
Containerfile
@@ -8,7 +8,7 @@ LABEL name="coldfront" \
8
RUN dnf install -y python3.12 && dnf update -y
9
10
COPY . /app
11
-# For the files that were copied in during the build
+
12
RUN chown -R 1001:0 /app && \
13
chmod -R g+rwx /app
14
@@ -41,3 +41,9 @@ EXPOSE 5678
41
42
RUN chown -R 1001:0 /tmp/uv && \
43
chmod -R g=u /tmp/uv
44
45
+# Terrible hack for now :( )
46
+USER 0
47
+RUN chown -R 1001:0 /app && \
48
+ chmod -R g+rwx /app
49
+USER 1001
0 commit comments