1
0

set Dockerfile to build from distroless

Signed-off-by: kmova <kiran.mova@mayadata.io>
This commit is contained in:
kmova
2020-12-23 17:45:57 +00:00
parent 15bc8b0423
commit e834136851

View File

@@ -12,11 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM alpine
FROM gcr.io/distroless/static:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="NFS subdir external provisioner"
ARG binary=./bin/nfs-subdir-external-provisioner
RUN apk update --no-cache && apk add ca-certificates
COPY ${binary} /nfs-subdir-external-provisioner
ENTRYPOINT ["/nfs-subdir-external-provisioner"]