Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc updates #41

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ ARG BUILD_HOME
ENV APP_HOME=$BUILD_HOME/bot
WORKDIR $APP_HOME
# Copy gradle settings and config to /app in the image
COPY build.gradle settings.gradle $APP_HOME
COPY build.gradle $APP_HOME
COPY settings.gradle $APP_HOME

# Build gradle - caches dependencies
RUN gradle --no-daemon build || return 0
Expand All @@ -25,7 +26,8 @@ ENV APP_HOME=$BUILD_HOME/bot
WORKDIR $APP_HOME

COPY --from=cache /root/.gradle /root/.gradle
COPY --from=cache $APP_HOME/build.gradle $APP_HOME/settings.gradle $APP_HOME
COPY --from=cache $APP_HOME/build.gradle $APP_HOME
COPY --from=cache $APP_HOME/settings.gradle $APP_HOME
COPY src/ src/

RUN gradle --no-daemon -b build.gradle clean build
Expand Down
5 changes: 0 additions & 5 deletions Makefile

This file was deleted.

77 changes: 0 additions & 77 deletions build-CI.gradle

This file was deleted.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repositories {
mavenCentral()
}

def lastSupportedVersion = "1.10.32.1"
def lastSupportedVersion = "1.10.35"
def runeLiteVersion = getRuneLiteVersion()
def supportedCheck = false
if (supportedCheck) {
Expand Down
30 changes: 0 additions & 30 deletions docker-compose-wireguard.yml

This file was deleted.

11 changes: 0 additions & 11 deletions docker-compose.yml

This file was deleted.

Loading