forked from NIBLCO/niblapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing unused code. Adding docker file
- Loading branch information
Showing
19 changed files
with
12 additions
and
1,953 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM maven:3.5-jdk-8 AS build | ||
COPY src /usr/src/app/src | ||
COPY pom.xml /usr/src/app | ||
RUN mvn -f /usr/src/app/pom.xml clean package | ||
|
||
FROM gcr.io/distroless/java | ||
COPY --from=build /usr/src/app/target/nibl-api.jar /usr/app/nibl-api.jar | ||
|
||
ENTRYPOINT ["java","-jar","/usr/app/nibl-api.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 0 additions & 63 deletions
63
src/main/java/com/nibl/api/anilist/controller/AnilistController.java
This file was deleted.
Oops, something went wrong.
75 changes: 0 additions & 75 deletions
75
src/main/java/com/nibl/api/anilist/domain/AccessToken.java
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.