-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update epicbox-mono and epicbox-pascalabc images
- Loading branch information
Showing
2 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
FROM stepik/epicbox-base:jessie | ||
FROM stepik/epicbox-base:buster | ||
MAINTAINER Alexander Petrov <[email protected]> | ||
|
||
ENV MONO_VERSION 5.0.0.100 | ||
ENV MONO_VERSION 6.10.0.104 | ||
|
||
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | ||
|
||
RUN echo "deb http://download.mono-project.com/repo/debian jessie/snapshots/$MONO_VERSION main" > /etc/apt/sources.list.d/mono-official.list && \ | ||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends gnupg && \ | ||
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF && \ | ||
echo "deb http://download.mono-project.com/repo/debian buster/snapshots/$MONO_VERSION main" > /etc/apt/sources.list.d/mono-official.list && \ | ||
apt-get update && \ | ||
apt-get install -y mono-devel --no-install-recommends && \ | ||
apt-get install -y --no-install-recommends mono-devel && \ | ||
rm -rf /var/lib/apt/lists/* /tmp/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM stepik/epicbox-mono:5.0.0 | ||
FROM stepik/epicbox-mono:6.10.0 | ||
MAINTAINER Alexander Petrov <[email protected]> | ||
|
||
RUN apt-get update && apt-get install wget unzip -y &&\ | ||
|