Skip to content

Commit

Permalink
REQUIRES FileBot r10340 OR HIGHER
Browse files Browse the repository at this point in the history
  • Loading branch information
rednoah committed Jun 23, 2024
1 parent 5c0696e commit 0ec0787
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion Dockerfile.projector
Original file line number Diff line number Diff line change
@@ -1,8 +1,26 @@
FROM rednoah/filebot:beta
FROM rednoah/filebot

LABEL maintainer="Reinhard Pointner <[email protected]>"


# REQUIRES FileBot r10340 OR HIGHER
ENV FILEBOT_VERSION 5.1.4
ENV FILEBOT_URL https://get.filebot.net/filebot/BETA/FileBot_${FILEBOT_VERSION}_universal.deb


RUN set -eux \
## ** uninstall stable release
&& DEBIAN_FRONTEND=noninteractive apt-get purge -y filebot \
&& rm -rv /usr/share/filebot \
## ** install latest revision
&& curl -o /tmp/filebot.deb "https://get.filebot.net/filebot/BETA/FileBot_${FILEBOT_VERSION}_universal.deb" \
&& dpkg -i /tmp/filebot.deb \
&& rm -v /tmp/filebot.deb \
## ** apply custom application configuration
&& sed -i 's|APP_DATA=.*|APP_DATA="$HOME"|g; s|-Dapplication.deployment=deb|-Dapplication.deployment=docker -Duser.home="$HOME"|g' /usr/bin/filebot


# REQUIRES FileBot r10340 OR HIGHER
RUN set -eux \
## ** install projector
&& curl -fsSL -o /tmp/projector-server.zip https://github.com/JetBrains/projector-server/releases/download/v1.8.1/projector-server-v1.8.1.zip \
Expand Down

0 comments on commit 0ec0787

Please sign in to comment.