You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
202 B
14 lines
202 B
1 year ago
|
FROM openjdk:8-jre-alpine3.9
|
||
|
|
||
|
ENV SERVICE_PORTS=3008
|
||
|
|
||
|
RUN mkdir -p /app/
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY ./entrypoint.sh /app/
|
||
|
RUN chmod 755 -R /app/
|
||
|
|
||
|
COPY ./drone-demo*.jar /app/
|
||
|
|
||
|
ENTRYPOINT ["/app/entrypoint.sh"]
|