Skip to content

rebase on focal and update code formatting #5

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

Merged
merged 1 commit into from
Apr 20, 2021
Merged
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
69 changes: 36 additions & 33 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-rdesktop-web:bionic
FROM ghcr.io/linuxserver/baseimage-rdesktop-web:focal

# set version label
ARG BUILD_DATE
@@ -8,38 +8,41 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
LABEL maintainer="thelamer"

RUN \
echo "**** install packages ****" && \
apt-get update && \
apt-get install -y \
gnome-keyring \
libatkmm-1.6-1v5 \
libcairomm-1.0-1v5 \
libglibmm-2.4-1v5 \
libgtk2.0-0 \
libgtkmm-3.0-1v5 \
libpangomm-1.4-1v5 \
libpcrecpp0v5 \
libpython3.7 \
libsecret-1-0 \
libsigc++-2.0-0v5 \
libssh-4 \
libvsqlitepp3v5 \
libzip4 && \
echo "**** install mysql workbench ****" && \
if [ -z ${WORKBENCH_VERSION+x} ]; then \
WORKBENCH_VERSION=$(curl -sL https://dev.mysql.com/downloads/workbench/ \
|awk '/<h1>MySQL Workbench/ {print $3;exit}'); \
fi && \
curl -Lf -o \
/tmp/workbench.deb \
https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community_${WORKBENCH_VERSION}-1ubuntu18.04_amd64.deb && \
dpkg -i /tmp/workbench.deb && \
echo "**** cleanup ****" && \
apt-get clean && \
rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*
echo "**** install packages ****" && \
apt-get update && \
apt-get install -y \
gnome-keyring \
libatkmm-1.6-1v5 \
libcairomm-1.0-1v5 \
libglibmm-2.4-1v5 \
libgtk2.0-0 \
libgtkmm-3.0-1v5 \
libmysqlclient21 \
libopengl0 \
libpangomm-1.4-1v5 \
libpcrecpp0v5 \
libproj15 \
libpython3.8 \
libsecret-1-0 \
libsigc++-2.0-0v5 \
libssh-4 \
libvsqlitepp3v5 \
libzip5 && \
echo "**** install mysql workbench ****" && \
if [ -z ${WORKBENCH_VERSION+x} ]; then \
WORKBENCH_VERSION=$(curl -sL https://dev.mysql.com/downloads/workbench/ \
|awk '/<h1>MySQL Workbench/ {print $3;exit}'); \
fi && \
curl -Lf -o \
/tmp/workbench.deb \
https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community_${WORKBENCH_VERSION}-1ubuntu20.04_amd64.deb && \
dpkg -i /tmp/workbench.deb && \
echo "**** cleanup ****" && \
apt-get clean && \
rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*

# add local files
COPY /root /
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -230,5 +230,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **20.04.21:** - Rebase on focal.
* **18.01.21:** - Update libpython dependency.
* **26.03.20:** - Initial release.
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
@@ -42,5 +42,6 @@ app_setup_block: |

# changelog
changelogs:
- { date: "20.04.21:", desc: "Rebase on focal." }
- { date: "18.01.21:", desc: "Update libpython dependency." }
- { date: "26.03.20:", desc: "Initial release." }