- added example docker-compose for minisrv + webone - update: wtv-home:/home: reduce size of title to fit longer version numbers - update: wtv-chat:/home: fix colors - update: login system: do not send tellyscript nor login headers to reconnecting (eg client:redial) client - fix: fixed tellyscript path for wtv-1800:/noflash (bf0app braindead) - update flashrom subsystem: - moved duplicate code into WTVFlashrom class - smarter part information detection - http(s) proxy updates: - allow ~ character - fix HTTPS when using HTTP proxy - include example webone.conf for external HTTP Proxy - update: app.js: enable graceful shutdown with SIGTERM - update: add service ip to wtv-tricks:/info
14 lines
457 B
Docker
14 lines
457 B
Docker
FROM debian:latest
|
|
|
|
RUN apt-get update && apt-get install --yes curl && \
|
|
curl -L https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb -o /tmp/packages-microsoft-prod.deb && \
|
|
apt-get install --yes /tmp/packages-microsoft-prod.deb && \
|
|
rm /tmp/packages-microsoft-prod.deb && \
|
|
apt-get update && \
|
|
apt-get install --yes curl imagemagick ffmpeg jpegoptim
|
|
|
|
COPY ./setup.sh /tmp/setup.sh
|
|
RUN bash /tmp/setup.sh
|
|
|
|
CMD /usr/local/bin/webone
|