#
# 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
#
#     https://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.
#

# alpine:3.13
FROM alpine@sha256:08d6ca16c60fe7490c03d10dc339d9fd8ea67c6466dea8d558526b1330a85930

RUN apk add --no-cache \
		openjdk11 \
		maven \
		tomcat-native

ENTRYPOINT	cd traffic_router && \
			export JAVA_HOME="$(command -v java | xargs realpath | xargs dirname)/.." && \
			mvn "-Dmaven.repo.local=${GITHUB_WORKSPACE}/.m2/repository" \
				test -Djava.library.path=/usr/share/java
