Skip to content

Commit

Permalink
Release 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aNNiMON committed Jul 29, 2024
1 parent cb01dce commit d78ae67
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ RUN apk add --no-cache python3 py3-pip ffmpeg \
&& python3 -m pip install --upgrade pyrogram \
&& python3 -m pip install --upgrade TgCrypto
WORKDIR /app
COPY --from=builder /usr/src/java-code/build/libs/ffmpegbot-1.1.1-SNAPSHOT-all.jar .
COPY --from=builder /usr/src/java-code/build/libs/ffmpegbot-1.2-SNAPSHOT-all.jar .
RUN mkdir input && mkdir output
COPY pytgfile.py .
COPY ffmpegbot-docker.yaml .
ENTRYPOINT ["java", "-jar", "/app/ffmpegbot-1.1.1-SNAPSHOT-all.jar", "docker"]
ENTRYPOINT ["java", "-jar", "/app/ffmpegbot-1.2-SNAPSHOT-all.jar", "docker"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ cp ffmpegbot.yaml.template ffmpegbot.yaml
vim ffmpegbot.yaml
mkdir {input,output}
# Run
java -jar ./build/libs/ffmpegbot-1.1.1-SNAPSHOT-all.jar
java -jar ./build/libs/ffmpegbot-1.2-SNAPSHOT-all.jar
```


Expand Down
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

mainClassName = 'com.annimon.ffmpegbot.Main'
group 'com.annimon'
version '1.1.1-SNAPSHOT'
version '1.2-SNAPSHOT'

sourceCompatibility = 17
targetCompatibility = 17
Expand All @@ -21,7 +21,9 @@ repositories {
}

dependencies {
implementation 'com.annimon:tgbots-module:7.6.0'
implementation ('com.annimon:tgbots-module:7.7.0') {
exclude group: 'org.telegram', module: 'telegrambots-webhook'
}
implementation 'org.slf4j:slf4j-simple:2.0.13'
}

Expand Down

0 comments on commit d78ae67

Please sign in to comment.