Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker-compose.dotnet.yml to build dotnetcore 8 #111

Merged
merged 2 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The development containers on this list are maintained by the Okteto team to hel
## General Use
| Language/Stack | Docker Image |
|-------------------|----------------------------------------------|
| dotnetcore 6.0 | [okteto/dotnetcore:6](dotnetcore/Dockerfile) |
| dotnetcore 8.0 | [okteto/dotnetcore:8](dotnetcore/Dockerfile) |
| golang 1.21 | [okteto/golang:1](golang/Dockerfile) |
| jdk 17, Gradle 8.2 | [okteto/gradle:6.5](gradle/Dockerfile) |
| jdk 17, Maven 3 | [okteto/maven:3-openjdk](maven/Dockerfile) |
Expand Down
14 changes: 7 additions & 7 deletions docker-compose.dotnet.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
version: '3.7'

services:
dotnetcore3:
image: okteto/dotnetcore:3
dotnetcore6:
image: okteto/dotnetcore:6
build:
context: .
dockerfile: dotnetcore/Dockerfile
args:
VERSION: "3.1"
dotnetcore6:
image: okteto/dotnetcore:6
VERSION: "6.0"
dotnetcore8:
image: okteto/dotnetcore:8
build:
context: .
dockerfile: dotnetcore/Dockerfile
args:
VERSION: "6.0"
VERSION: "8.0"



2 changes: 1 addition & 1 deletion dotnetcore/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG VERSION=6.0
ARG VERSION=8.0
FROM mcr.microsoft.com/dotnet/sdk:$VERSION as base

RUN apt-get update && apt-get install -y unzip
Expand Down
Loading