Skip to content

Commit

Permalink
Fixed typo in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
warrenchristian1telus committed Sep 17, 2024
1 parent 5f2e1b4 commit ed3053d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ USER www-data
WORKDIR ${BUILD_DIR}

# Check if APP_KEY is set and valid
RUN if [ -z "$APP_KEY" ] || ! echo "$APP_KEY" | grep -Eq '^base64:[A-Za-z0-9+/=]{43}$'; then \:
RUN if [ -z "$APP_KEY" ] || ! echo "$APP_KEY" | grep -Eq '^base64:[A-Za-z0-9+/=]{43}$'; then \
echo "APP_KEY is not set or invalid. Generating a new APP_KEY..."; \
php artisan key:generate --ansi; \
else \
Expand Down

0 comments on commit ed3053d

Please sign in to comment.