Skip to content

Commit

Permalink
Release 0.0.6 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
levimdmiller authored Feb 26, 2020
1 parent 7df37cf commit 6e13bf1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:8-jdk-alpine as build
FROM openjdk:11-jdk-buster as build
WORKDIR /workspace/app

COPY mvnw .
Expand All @@ -9,7 +9,7 @@ COPY src src
RUN ./mvnw install -DskipTests
RUN mkdir -p target/dependency && (cd target/dependency; jar -xf ../*.jar)

FROM openjdk:8-jdk-alpine
FROM openjdk:11-jdk-buster
VOLUME /tmp
ARG DEPENDENCY=/workspace/app/target/dependency
COPY --from=build ${DEPENDENCY}/BOOT-INF/lib /app/lib
Expand All @@ -19,8 +19,6 @@ COPY src/main/resources/application-example.properties application.properties
EXPOSE 8421
ENTRYPOINT [\
"java",\
"-XX:+UnlockExperimentalVMOptions",\
"-XX:+UseCGroupMemoryLimitForHeap",\
"-XX:MaxRAMFraction=1",\
"-XshowSettings:vm",\
"-cp",\
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>ca.levimiller</groupId>
<artifactId>sms-bridge</artifactId>
<version>0.0.5-SNAPSHOT</version>
<version>0.0.6-SNAPSHOT</version>
<name>sms-bridge</name>
<description>Sms Bridge for Matrix</description>

Expand Down

0 comments on commit 6e13bf1

Please sign in to comment.