diff --git a/CHANGELOG.md b/CHANGELOG.md index a05987887..f8e305167 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ ## Changelog +* `december` + * added mattermost + * fixed some images * `november` * fixes and updated images * migrated to github actions diff --git a/epicmorg/prod/main/Dockerfile b/epicmorg/prod/main/Dockerfile index 849dfd949..ae0393f78 100644 --- a/epicmorg/prod/main/Dockerfile +++ b/epicmorg/prod/main/Dockerfile @@ -15,7 +15,7 @@ RUN for i in $(seq 1 8); do mkdir -p "/usr/share/man/man${i}"; done ################################################################## # perforce client binary ################################################################## -ARG P4_VERSION=r20.1 +ARG P4_VERSION=r20.2 ARG P4_DOWNLOAD_URL=http://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64/p4 diff --git a/teamcity/agent/Dockerfile b/teamcity/agent/Dockerfile index 1c41c66b9..b1e12bb6b 100644 --- a/teamcity/agent/Dockerfile +++ b/teamcity/agent/Dockerfile @@ -11,8 +11,6 @@ RUN apt update && \ apt dist-upgrade -y && \ apt autoremove -y - - ################################################################## # teamcity minimal agent ################################################################## @@ -282,9 +280,9 @@ RUN cd /tmp && \ ################################################################## -# Node.js 14.x +# Node.js 15.x ################################################################## -RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \ +RUN curl -sL https://deb.nodesource.com/setup_15.x | bash - && \ curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - && \ echo "deb https://nightly.yarnpkg.com/debian/ nightly main" > /etc/apt/sources.list.d/yarn.list && \ apt-get update && \ @@ -306,11 +304,11 @@ RUN cd / && \ ################################################################## # Android SDK ################################################################## -#RUN apt-get install -y -t sid --allow-unauthenticated \ -# android-sdk \ -# android-sdk-build-tools \ -# android-sdk-platform-tools libsqlite3-0 sqlite3 && \ -# echo "24333f8a63b6825ea9c5514f83c2829b004d1fee" > /usr/lib/android-sdk/licenses/android-sdk-license +RUN apt-get install -y -t sid --allow-unauthenticated \ + android-sdk \ + android-sdk-build-tools \ + android-sdk-platform-tools libsqlite3-0 sqlite3 && \ + echo "24333f8a63b6825ea9c5514f83c2829b004d1fee" > /usr/lib/android-sdk/licenses/android-sdk-license ENV ANDROID_HOME=/usr/lib/android-sdk ENV ANDROID_SDK_ROOT=/usr/lib/android-sdk diff --git a/teamcity/server/Dockerfile b/teamcity/server/Dockerfile index f6fd9f24a..b2218add6 100644 --- a/teamcity/server/Dockerfile +++ b/teamcity/server/Dockerfile @@ -1,6 +1,7 @@ FROM jetbrains/teamcity-server LABEL maintainer="EpicMorg DevTeam, developer@epicm.org" ARG DEBIAN_FRONTEND=noninteractive +USER root ################################################################## # editing sources list @@ -11,7 +12,7 @@ COPY locale.gen /etc/locale.gen ################################################################## # perforce client binary ################################################################## -ARG P4_VERSION=r20.1 +ARG P4_VERSION=r20.2 ARG P4_DOWNLOAD_URL=http://www.perforce.com/downloads/perforce/${P4_VERSION}/bin.linux26x86_64/p4 ################################################################## @@ -66,4 +67,3 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio zip && \ wget -nv --random-wait -c -P /usr/bin ${P4_DOWNLOAD_URL} && \ chmod +x /usr/bin/p4 -