Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Fix variable name typo (DOTNETCORE_VESRION -> DOTNETCORE_VERSION)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Bergmeister committed Jan 4, 2020
1 parent ec9fd04 commit af12523
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions containers/dapr-dotnetcore-3.0/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------

ARG DOTNETCORE_VESRION=3.0
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNETCORE_VESRION}
ARG DOTNETCORE_VERSION=3.0
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNETCORE_VERSION}

# The node image includes a non-root user with sudo access. Use the
# "remoteUser" property in devcontainer.json to use it. On Linux, update
Expand Down
4 changes: 2 additions & 2 deletions containers/dotnetcore-2.1/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------
ARG DOTNETCORE_VESRION=2.1
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNETCORE_VESRION}
ARG DOTNETCORE_VERSION=2.1
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNETCORE_VERSION}

# This Dockerfile adds a non-root user with sudo access. Use the "remoteUser"
# property in devcontainer.json to use it. On Linux, the container user's GID/UIDs
Expand Down
4 changes: 2 additions & 2 deletions containers/dotnetcore-2.2/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------

ARG DOTNETCORE_VESRION=2.2
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNETCORE_VESRION}
ARG DOTNETCORE_VERSION=2.2
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNETCORE_VERSION}

# This Dockerfile adds a non-root user with sudo access. Use the "remoteUser"
# property in devcontainer.json to use it. On Linux, the container user's GID/UIDs
Expand Down
4 changes: 2 additions & 2 deletions containers/dotnetcore-3.0-fsharp/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------

ARG DOTNETCORE_VESRION=3.0
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNETCORE_VESRION}
ARG DOTNETCORE_VERSION=3.0
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNETCORE_VERSION}

# Avoid warnings by switching to noninteractive
ENV DEBIAN_FRONTEND=noninteractive
Expand Down
4 changes: 2 additions & 2 deletions containers/dotnetcore-3.0/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------

ARG DOTNETCORE_VESRION=3.0
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNETCORE_VESRION}
ARG DOTNETCORE_VERSION=3.0
FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNETCORE_VERSION}

# This Dockerfile adds a non-root user with sudo access. Use the "remoteUser"
# property in devcontainer.json to use it. On Linux, the container user's GID/UIDs
Expand Down

0 comments on commit af12523

Please sign in to comment.