oauth.Dockerfile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of envoy-control-tests Show documentation
Show all versions of envoy-control-tests Show documentation
Production-ready Control Plane for Service Mesh based on Envoy Proxy.
FROM alpine
RUN apk add openjdk11-jre git
RUN git clone --depth 1 --branch 0.0.1 https://github.com/allegro/oauth-mock.git
WORKDIR ./oauth-mock
RUN ./gradlew installDist
CMD ["./build/install/oauth-mock/bin/oauth-mock"]