open source Kubernetes-native API gateway for microservices built on the Envoy Proxy
docker pull emissary-ingress/emissary:latest
docker run -d --name emissary --restart always emissary-ingress/emissary:latest
# The `test-stats` image gets built by `build-aux/check.mk` for use by
# `python/tests/ingegration/manifests.py`.
# Copyright 2018 Datawire. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License
FROM docker.io/library/python:3.13.5-slim-bookworm
LABEL PROJECT_REPO_URL = "[email protected]:datawire/ambassador.git" \
PROJECT_REPO_BROWSER_URL = "https://github.com/datawire/ambassador" \
DESCRIPTION = "Ambassador REST Service" \
VENDOR = "Datawire" \
VENDOR_URL = "https://datawire.io/"
# This Dockerfile is set up to install all the application-specific stuff into
# /application.
#
# NOTE: If you don't know what you're doing, it's probably a mistake to
# blindly hack up this file.
# # We need curl, pip, and dnsutils (for nslookup).
# RUN apt-get update && \
# DEBIAN_FRONTEND=noninteractive apt-get install -y curl python3 python3-pip dnsutils jq
# Set WORKDIR to /application which is the root of all our apps.
WORKDIR /application
# COPY only requirements.txt to avoid screwing up Docker caching and
# causing a full reinstall of all dependencies when dependencies are
# not changed.
COPY docker/test-stats/requirements.txt .
# Install application dependencies
RUN pip3 install -r requirements.txt
# COPY the app code and configuration into place
COPY docker/test-stats/stats-test.py docker/test-stats/stats-web.py docker/test-stats/entrypoint.sh ./
# perform any final configuration steps.
ENTRYPOINT /application/entrypoint.sh