Skip to content

Commit

Permalink
Update docker-compose.dotnet.yml to build dotnetcore 8 (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
rberrelleza authored Mar 27, 2024
1 parent bfca696 commit b691b8c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
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

0 comments on commit b691b8c

Please sign in to comment.