
This initial commit includes support for Mcrouter, Memcached, basic CI tests as well as Helm charts for deploying things. Depends-On: https://review.opendev.org/713107 Depends-On: https://review.opendev.org/713115 Change-Id: I0b1ab6d8e716460e095bc3953614e336620f984e
13 lines
486 B
Docker
13 lines
486 B
Docker
FROM ubuntu:bionic
|
|
|
|
RUN apt update && \
|
|
apt install -y --no-install-recommends ca-certificates wget gnupg && \
|
|
wget -O - https://facebook.github.io/mcrouter/debrepo/bionic/PUBLIC.KEY | apt-key add && \
|
|
echo "deb https://facebook.github.io/mcrouter/debrepo/bionic bionic contrib" >> /etc/apt/sources.list && \
|
|
apt update && \
|
|
apt install -y mcrouter && \
|
|
apt remove -y wget gnupg && \
|
|
apt autoremove -y && \
|
|
apt clean all
|
|
|
|
ENTRYPOINT ["/usr/bin/mcrouter"] |