blob: 66c3eaa5896f0c390d2a5986d82430d19ae0fe16 [file] [log] [blame]
FROM openjdk:8-jre-alpine
ENV JAVA_TOOL_OPTIONS -agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=n
ENV HTTP_PROXY http://webproxy3.pta.de:8080
ENV HTTPS_PROXY http://webproxy3.pta.de:8080
ENV TZ Europe/Berlin
# install tzdata to set the right timezone
RUN apk add --no-cache tzdata
COPY /target/grid-failure-information.backend.stoerungsauskunft-interface.jar /usr/src/cbd/
WORKDIR usr/src/cbd
CMD ["java", "-jar", "-Dspring.profiles.active=devserver", "grid-failure-information.backend.stoerungsauskunft-interface.jar"]