Skip to content

Commit

Permalink
Dockerfile: removed .classpath.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromerousselot committed Mar 30, 2021
1 parent 2746621 commit 2343ca9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM adoptopenjdk/openjdk11:x86_64-alpine-jdk-11.0.9_11-slim as build-stage
WORKDIR /usr/src/minima/
COPY gradle gradle
COPY gradlew settings.gradle build.gradle .classpath ./
COPY gradlew settings.gradle build.gradle ./
WORKDIR /usr/src/minima/
# Call gradlew before copying the source code to only download the gradle distribution once (layer will be cached)
#RUN ./gradlew --no-daemon -v
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.arm64v8
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM arm64v8/adoptopenjdk:11-jdk-hotspot-focal as build-stage
WORKDIR /usr/src/minima/
COPY gradle gradle
COPY gradlew settings.gradle build.gradle .classpath ./
COPY gradlew settings.gradle build.gradle ./
WORKDIR /usr/src/minima/
# Call gradlew before copying the source code to only download the gradle distribution once (layer will be cached)
#RUN ./gradlew --no-daemon -v
Expand Down

0 comments on commit 2343ca9

Please sign in to comment.