mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
91456ab5bb
Recent versions of `docker build` started generating the InvalidDefaultArgInFrom warning if Dockerfile contains an ARG without default value. While this warning doesn't affect building Docker packages via `make package-*` commands, it is better suppressing the warning, so it doesn't clutter `make package-*` output with the noise, which can hide real issues in the future.
9 lines
148 B
Docker
9 lines
148 B
Docker
ARG base_image=non-existing
|
|
FROM $base_image
|
|
|
|
EXPOSE 8880
|
|
|
|
ENTRYPOINT ["/vmalert-prod"]
|
|
ARG src_binary=non-existing
|
|
COPY $src_binary ./vmalert-prod
|