Skip to content

Commit

Permalink
[Dockerfile] Remove now unneeded logtostderr flag (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
manugarg authored Aug 16, 2023
1 parent b3891ed commit ec897ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.version=$VERSION \
com.microscaling.license="Apache-2.0"

ENTRYPOINT ["/cloudprober", "--logtostderr"]
ENTRYPOINT ["/cloudprober"]
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ RUN if [[ ! -f /cloudprober ]]; then go build -o /cloudprober /cmd/cloudprober.g
FROM alpine
COPY --from=build /cloudprober /cloudprober
COPY cloudprober_test.cfg /etc/cloudprober.cfg
ENTRYPOINT ["/cloudprober", "--logtostderr"]
ENTRYPOINT ["/cloudprober"]
4 changes: 2 additions & 2 deletions contrib/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FROM cloudprober/cloudprober:${CLOUDPROBER_VERSION} AS base
# This stage is used to find the correct binary for the platform. We store the
# correct binary at /stage-0-workdir/cloudprober, and in the next stage discard
# the rest.
FROM busybox as stage0
FROM busybox AS stage0
WORKDIR /stage-0-workdir
COPY bigquery_probe-linux-* ./

Expand All @@ -38,4 +38,4 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.version=$VERSION \
com.microscaling.license="Apache-2.0"

ENTRYPOINT ["/cloudprober", "--logtostderr"]
ENTRYPOINT ["/cloudprober"]

0 comments on commit ec897ab

Please sign in to comment.