28 lines
994 B
Docker
28 lines
994 B
Docker
# Copyright (c) 2019-2022 Red Hat, Inc.
|
|
# This program and the accompanying materials are made
|
|
# available under the terms of the Eclipse Public License 2.0
|
|
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
#
|
|
# SPDX-License-Identifier: EPL-2.0
|
|
#
|
|
# Contributors:
|
|
# Red Hat, Inc. - initial API and implementation
|
|
#
|
|
|
|
# The base image is expected to contain
|
|
# /bin/opm (with a serve subcommand) and /bin/grpc_health_probe
|
|
FROM quay.io/operator-framework/opm:latest
|
|
ARG CHANNEL
|
|
|
|
# Configure the entrypoint and command
|
|
ENTRYPOINT ["/bin/opm"]
|
|
CMD ["serve", "/configs", "--cache-dir=/tmp/cache"]
|
|
|
|
# Copy declarative config root into image at /configs and pre-populate serve cache
|
|
ADD olm-catalog/${CHANNEL} /configs
|
|
RUN ["/bin/opm", "serve", "/configs", "--cache-dir=/tmp/cache", "--cache-only", "--termination-log", "/tmp/termination-log"]
|
|
|
|
# Set DC-specific label for the location of the DC root directory
|
|
# in the image
|
|
LABEL operators.operatorframework.io.index.configs.v1=/configs
|