forked from netdata/netdata
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix warnings in Dockerfile (netdata#18395)
- Loading branch information
1 parent
c966319
commit a629c7b
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
# This image contains preinstalled dependencies | ||
# hadolint ignore=DL3007 | ||
FROM netdata/builder:v2 as builder | ||
FROM netdata/builder:v2 AS builder | ||
|
||
# One of 'nightly' or 'stable' | ||
ARG RELEASE_CHANNEL=nightly | ||
|
@@ -59,7 +59,7 @@ RUN mkdir -p /app/usr/sbin/ \ | |
##################################################################### | ||
# This image contains preinstalled dependencies | ||
# hadolint ignore=DL3007 | ||
FROM netdata/base:v2 as base | ||
FROM netdata/base:v2 AS base | ||
|
||
LABEL org.opencontainers.image.authors="Netdatabot <[email protected]>" | ||
LABEL org.opencontainers.image.url="https://netdata.cloud" | ||
|
@@ -76,11 +76,11 @@ ONBUILD ENV NETDATA_OFFICIAL_IMAGE=false | |
|
||
ARG NETDATA_UID=201 | ||
ARG NETDATA_GID=201 | ||
ENV DOCKER_GRP netdata | ||
ENV DOCKER_USR netdata | ||
ENV DOCKER_GRP=netdata | ||
ENV DOCKER_USR=netdata | ||
# If DISABLE_TELEMETRY is set, it will disable anonymous stats collection and reporting | ||
#ENV DISABLE_TELEMETRY=1 | ||
ENV NETDATA_LISTENER_PORT 19999 | ||
ENV NETDATA_LISTENER_PORT=19999 | ||
EXPOSE $NETDATA_LISTENER_PORT | ||
|
||
ENV NETDATA_EXTRA_DEB_PACKAGES="" | ||
|