go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/logdog/server/cmd/logdog_collector/docker/Dockerfile (about)

     1  # Copyright 2020 The LUCI Authors. All rights reserved.
     2  # Use of this source code is governed under the Apache License, Version 2.0
     3  # that can be found in the LICENSE file.
     4  
     5  FROM gcr.io/distroless/static:latest
     6  
     7  # The binary should be built outside the container and placed in the Docker
     8  # context directory. See ../Makefile for how to do it during the development.
     9  COPY logdog_collector .
    10  
    11  USER nobody
    12  ENTRYPOINT ["./logdog_collector"]