You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM openjdk:8-alpine3.9
|
|
|
|
ENV SERVICE_PORTS=8000
|
|
|
|
RUN mkdir -p /app/
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./entrypoint.sh /app/
|
|
RUN chmod 755 -R /app/
|
|
|
|
COPY ./ips-ci-demo-1.0*.jar /app/
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|
|
|