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.
1 parent c7d2c82 commit 04f0780Copy full SHA for 04f0780
Dockerfile
@@ -14,9 +14,11 @@ RUN install-php-extensions \
14
redis
15
16
RUN addgroup --gid $GID nonroot && adduser --uid $UID --gid $GID --disabled-password --gecos "" nonroot
17
-USER nonroot
+COPY . /app
18
+
19
+RUN chown nonroot:nonroot -Rf /app
20
-COPY --chown=nonroot:nonroot . /app
21
+USER nonroot
22
RUN composer install --no-dev
23
24
ENTRYPOINT ["php", "artisan", "octane:frankenphp"]
0 commit comments