Skip to content

Commit 293a493

Browse files
committed
Update readme
1 parent 97ce917 commit 293a493

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build api using an image with build tools
2-
FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine AS build-env
2+
FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine AS build-env
33

44
WORKDIR /openrct2-api-build
55
COPY . ./
@@ -8,7 +8,7 @@ RUN cd src/OpenRCT2.API \
88
&& rm /openrct2-api/*.pdb
99

1010
# Build lightweight runtime image
11-
FROM mcr.microsoft.com/dotnet/runtime-deps:6.0-alpine
11+
FROM mcr.microsoft.com/dotnet/runtime-deps:10.0-alpine
1212

1313
WORKDIR /openrct2-api
1414
COPY --from=build-env /openrct2-api .

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ See instructions at https://www.microsoft.com/net/core
1010
## Docker
1111
```
1212
cd=`pwd`
13-
docker pull docker pull mcr.microsoft.com/dotnet/sdk:6.0
14-
docker run -v "$(pwd)":/work -w /work -it -p 5000:80 mcr.microsoft.com/dotnet/sdk:6.0 bash
13+
docker pull mcr.microsoft.com/dotnet/sdk:10.0
14+
docker run -v "$(pwd)":/work -w /work -it -p 5000:80 mcr.microsoft.com/dotnet/sdk:10.0 bash
1515
```
1616

1717
## Building / Launching

0 commit comments

Comments
 (0)