Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
- code-server 3.9.1
- NET Core SDK 3.1.407
- NET SDK 5.0.201
  • Loading branch information
martinussuherman committed Mar 10, 2021
1 parent fe51b99 commit 452e741
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions 3.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM martinussuherman/alpine-code-server:3.9.0-alpine3.12
FROM martinussuherman/alpine-code-server:3.9.1-alpine3.12

ENV \
# Enable correct mode for dotnet watch (only mode supported in a container)
Expand All @@ -21,9 +21,9 @@ RUN \
zlib

RUN \
dotnet_sdk_version=3.1.406 \
dotnet_sdk_version=3.1.407 \
&& wget -O dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Sdk/$dotnet_sdk_version/dotnet-sdk-$dotnet_sdk_version-linux-musl-x64.tar.gz \
&& dotnet_sha512='d6a19f06c90d6bcdedfd4d18529b2148a7784b84b64ea263cdb356204453b8d3368153258ede93019f0096ba37105883a238485459c0aaf0bbf702a8359c5f0e' \
&& dotnet_sha512='d389ae56be3dabcceeff9be81239e3da4e914fab0aa77ae7d36bc645fedb32e6193c6bc1e0412aa5081a5804a48d99acbcf6bc501f2f2739fbd3fe0d199eb8c6' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -oxzf dotnet.tar.gz -C /usr/share/dotnet \
Expand Down
6 changes: 3 additions & 3 deletions 5.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM martinussuherman/alpine-code-server:3.9.0-alpine3.12
FROM martinussuherman/alpine-code-server:3.9.1-alpine3.12

ENV \
# Enable correct mode for dotnet watch (only mode supported in a container)
Expand All @@ -21,9 +21,9 @@ RUN \
zlib

RUN \
dotnet_sdk_version=5.0.103 \
dotnet_sdk_version=5.0.201 \
&& wget -O dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Sdk/$dotnet_sdk_version/dotnet-sdk-$dotnet_sdk_version-linux-musl-x64.tar.gz \
&& dotnet_sha512='0bb6fc1aa4b8486b437f28baeda3b810f7c38ef195761a5eb4c5236975efc505dbff7abbdf7549a34278d110c8a7cf283e52f033a404b300e0f96a8ae0fca4a8' \
&& dotnet_sha512='46341b38fb4fd3faff66ce74e24063d7fd189de6d5ed12ee2bdcea11cefbb1edf1ed3984df87a11f5222cf3d79aceaede7402650ff09a964a2e8b81c7bd4bf08' \
&& echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \
&& mkdir -p /usr/share/dotnet \
&& tar -oxzf dotnet.tar.gz -C /usr/share/dotnet \
Expand Down
2 changes: 1 addition & 1 deletion 6.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM martinussuherman/alpine-code-server:3.9.0-alpine3.12
FROM martinussuherman/alpine-code-server:3.9.1-alpine3.12

ENV \
# Enable correct mode for dotnet watch (only mode supported in a container)
Expand Down

0 comments on commit 452e741

Please sign in to comment.