Skip to content

Commit

Permalink
fix warnings in Dockerfile (netdata#18395)
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasCARPi authored Aug 23, 2024
1 parent c966319 commit a629c7b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packaging/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand All @@ -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=""
Expand Down

0 comments on commit a629c7b

Please sign in to comment.