style(Dockerfile): fix command variable syntax in Dockerfile

This commit is contained in:
Jan Gleytenhoover 2025-01-20 08:42:57 +01:00
parent 6444d6a479
commit c204903c8b
Signed by: jank
GPG key ID: 50620ADD22CD330B

View file

@ -28,4 +28,4 @@ EOF
# install Docker tools (cli, buildx, compose)
COPY --from=gloursdocker/docker / /
CMD ["ng", "serve", "--host", "0.0.0.0", "--configuration", "$ANGULAR_CONFIG"]
CMD ["ng", "serve", "--host", "0.0.0.0", "--configuration", "${ANGULAR_CONFIG}"]