-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aad71e4
commit 91f6fb0
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -6,8 +6,8 @@ LABEL maintainer="Hive Solutions <[email protected]>" | |
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update &&\ | ||
apt-get install -y -q --no-install-recommends apt-transport-https sudo gcc make curl pypy dotnet-dev-1.0.0 linux-headers-generic\ | ||
libssl-dev python2-dev python3-dev pypy-dev &&\ | ||
apt-get install -y -q --no-install-recommends apt-transport-https sudo gcc make curl pypy linux-headers-generic\ | ||
libssl-dev python-dev python3-dev pypy-dev &&\ | ||
wget https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb -O /tmp/packages-microsoft-prod.deb &&\ | ||
dpkg -i /tmp/packages-microsoft-prod.deb && apt update && apt-get install dotnet-runtime-6.0 aspnetcore-runtime-6.0 &&\ | ||
rm -f /tmp/packages-microsoft-prod.deb && apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|