aboutsummaryrefslogtreecommitdiffstats
path: root/aai-resources/src/main/docker/Dockerfile
blob: 5c943c828e6c2ea3b73c1381aebdd7c2a8397bad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM eclipse-temurin:8-jre-alpine
USER nobody

ENV SERVER_PORT=8447
EXPOSE ${SERVER_PORT}

# Add the proper files into the docker image from your build
WORKDIR /opt/app/aai-resources

COPY --chown=nobody:nobody /maven/aai-resources/ .

ENTRYPOINT ["/bin/sh", "/opt/app/aai-resources/docker-entrypoint.sh"]