We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8057513 commit c0040eaCopy full SHA for c0040ea
.dockerignore
@@ -0,0 +1 @@
1
+.git
mutagen/Dockerfile
@@ -1,5 +1,13 @@
# Use a minimal base image.
2
FROM alpine:latest
3
4
+# Create user and group wodby
5
+RUN set -ex; \
6
+ addgroup -g 1000 -S wodby; \
7
+ adduser -u 1000 -D -S -s /bin/bash -G wodby wodby;
8
+
9
+# Copy application files
10
+COPY --chown=wodby:wodby app /var/www/html
11
12
# Run a no-op entry point and wait to host Mutagen agent processes.
-ENTRYPOINT ["tail", "-f", "/dev/null"]
13
+ENTRYPOINT ["tail", "-f", "/dev/null"]
0 commit comments