You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# When running the `docker buildx build` command, you may encounter the following warning:
#
# 1 warning found (use docker --debug to expand):
# - SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "POSTGRES_PASSWORD") (line 5)
#
# This warning indicates that sensitive data, such as passwords, should not be passed using ARG or ENV instructions
# in the Dockerfile. This is a security best practice to prevent accidental exposure of sensitive information.
#
# However, since this `Dockerfile` is intended for use in a development environment, you can choose to ignore this warning, or raise a pull request to help us improving it.