Skip to content

Commit

Permalink
Fix lint warnings
Browse files Browse the repository at this point in the history
> LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format
  • Loading branch information
arnested committed Oct 4, 2024
1 parent 7f3bd5b commit f5d634b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR "${workdir}"

HEALTHCHECK --interval=10s --start-period=90s CMD netstat -ltn | grep -c ":443"

ENV EXPIRATION_DAYS 30
ENV EXPIRATION_DAYS=30

##
# Drupal
Expand All @@ -23,9 +23,9 @@ FROM base AS drupal

COPY /drupal /

ENV NGINX_FASTCGI_PASS_HOST php
ENV NGINX_FASTCGI_PASS_PORT 9000
ENV NGINX_CLIENT_MAX_BODY_SIZE 128M
ENV NGINX_FASTCGI_PASS_HOST=php
ENV NGINX_FASTCGI_PASS_PORT=9000
ENV NGINX_CLIENT_MAX_BODY_SIZE=128M

##
# Proxy
Expand All @@ -41,7 +41,7 @@ FROM proxy AS nextjs

COPY /nextjs /

ENV NGINX_PROXY_PASS http://app:3000
ENV NGINX_PROXY_PASS=http://app:3000

##
# Storybook
Expand All @@ -50,5 +50,5 @@ FROM proxy AS storybook

COPY /storybook /

ENV NGINX_PROXY_PASS http://app:6006
ENV SERVER_CHANNEL_PROXY_PASS ws://app:6006/storybook-server-channel
ENV NGINX_PROXY_PASS=http://app:6006
ENV SERVER_CHANNEL_PROXY_PASS=ws://app:6006/storybook-server-channel

0 comments on commit f5d634b

Please sign in to comment.