We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 978eb92 commit 036cbafCopy full SHA for 036cbaf
Dockerfile
@@ -16,7 +16,8 @@ COPY --link . .
16
FROM node:18-alpine AS runner
17
RUN apk --no-cache add curl \
18
&& adduser --disabled-password --home /home/container container \
19
- && mkdir /app
+ && mkdir /app \
20
+ && chmod -R 777 /app
21
USER container
22
ENV USER=container \
23
HOME=/home/container \
scripts/start.sh
@@ -1,4 +1,5 @@
1
#!/usr/bin/env sh
2
+
3
if [ "$DOCKER" = "true" ]; then
4
base_dir="/app"
5
else
0 commit comments