Skip to content

Commit cdab615

Browse files
aptalcathelamer
authored andcommitted
rebase on focal and update code formatting
1 parent 379b239 commit cdab615

File tree

3 files changed

+38
-33
lines changed

3 files changed

+38
-33
lines changed

Dockerfile

Lines changed: 36 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/linuxserver/baseimage-rdesktop-web:bionic
1+
FROM ghcr.io/linuxserver/baseimage-rdesktop-web:focal
22

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

1010
RUN \
11-
echo "**** install packages ****" && \
12-
apt-get update && \
13-
apt-get install -y \
14-
gnome-keyring \
15-
libatkmm-1.6-1v5 \
16-
libcairomm-1.0-1v5 \
17-
libglibmm-2.4-1v5 \
18-
libgtk2.0-0 \
19-
libgtkmm-3.0-1v5 \
20-
libpangomm-1.4-1v5 \
21-
libpcrecpp0v5 \
22-
libpython3.7 \
23-
libsecret-1-0 \
24-
libsigc++-2.0-0v5 \
25-
libssh-4 \
26-
libvsqlitepp3v5 \
27-
libzip4 && \
28-
echo "**** install mysql workbench ****" && \
29-
if [ -z ${WORKBENCH_VERSION+x} ]; then \
30-
WORKBENCH_VERSION=$(curl -sL https://dev.mysql.com/downloads/workbench/ \
31-
|awk '/<h1>MySQL Workbench/ {print $3;exit}'); \
32-
fi && \
33-
curl -Lf -o \
34-
/tmp/workbench.deb \
35-
https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community_${WORKBENCH_VERSION}-1ubuntu18.04_amd64.deb && \
36-
dpkg -i /tmp/workbench.deb && \
37-
echo "**** cleanup ****" && \
38-
apt-get clean && \
39-
rm -rf \
40-
/tmp/* \
41-
/var/lib/apt/lists/* \
42-
/var/tmp/*
11+
echo "**** install packages ****" && \
12+
apt-get update && \
13+
apt-get install -y \
14+
gnome-keyring \
15+
libatkmm-1.6-1v5 \
16+
libcairomm-1.0-1v5 \
17+
libglibmm-2.4-1v5 \
18+
libgtk2.0-0 \
19+
libgtkmm-3.0-1v5 \
20+
libmysqlclient21 \
21+
libopengl0 \
22+
libpangomm-1.4-1v5 \
23+
libpcrecpp0v5 \
24+
libproj15 \
25+
libpython3.8 \
26+
libsecret-1-0 \
27+
libsigc++-2.0-0v5 \
28+
libssh-4 \
29+
libvsqlitepp3v5 \
30+
libzip5 && \
31+
echo "**** install mysql workbench ****" && \
32+
if [ -z ${WORKBENCH_VERSION+x} ]; then \
33+
WORKBENCH_VERSION=$(curl -sL https://dev.mysql.com/downloads/workbench/ \
34+
|awk '/<h1>MySQL Workbench/ {print $3;exit}'); \
35+
fi && \
36+
curl -Lf -o \
37+
/tmp/workbench.deb \
38+
https://cdn.mysql.com/Downloads/MySQLGUITools/mysql-workbench-community_${WORKBENCH_VERSION}-1ubuntu20.04_amd64.deb && \
39+
dpkg -i /tmp/workbench.deb && \
40+
echo "**** cleanup ****" && \
41+
apt-get clean && \
42+
rm -rf \
43+
/tmp/* \
44+
/var/lib/apt/lists/* \
45+
/var/tmp/*
4346

4447
# add local files
4548
COPY /root /

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,5 +230,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
230230

231231
## Versions
232232

233+
* **20.04.21:** - Rebase on focal.
233234
* **18.01.21:** - Update libpython dependency.
234235
* **26.03.20:** - Initial release.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@ app_setup_block: |
4242
4343
# changelog
4444
changelogs:
45+
- { date: "20.04.21:", desc: "Rebase on focal." }
4546
- { date: "18.01.21:", desc: "Update libpython dependency." }
4647
- { date: "26.03.20:", desc: "Initial release." }

0 commit comments

Comments
 (0)