2020-09-08 16:29:34 +00:00
|
|
|
# Copyright 2020 VMware, Inc.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
# Use a runtime image based on Debian slim
|
|
|
|
FROM debian:10.5-slim
|
|
|
|
|
|
|
|
# Copy the binary which was built outside the container.
|
|
|
|
COPY build/local-user-authenticator /usr/local/bin/local-user-authenticator
|
|
|
|
|
|
|
|
# Document the port
|
2020-11-02 16:57:05 +00:00
|
|
|
EXPOSE 8443
|
2020-09-08 16:29:34 +00:00
|
|
|
|
|
|
|
# Set the entrypoint
|
|
|
|
ENTRYPOINT ["/usr/local/bin/local-user-authenticator"]
|