Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-slim
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN --mount=type=cache,target=/root/.npm npm ci
Expand Down
6 changes: 3 additions & 3 deletions playground/DotnetTool/DotnetTool.AppHost/aspire-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
"exec",
"dotnet-ef",
"--source",
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\does-not-exist\\2623c613-5a82-4b5a-9f8a-09e9eb9a98c1",
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\does-not-exist\\52e64396-870b-410c-9140-554cb4546066",
"--ignore-failed-sources",
"--yes",
"--"
Expand All @@ -199,7 +199,7 @@
"exec",
"dotnet-ef",
"--source",
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\does-not-exist\\2623c613-5a82-4b5a-9f8a-09e9eb9a98c1",
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\does-not-exist\\52e64396-870b-410c-9140-554cb4546066",
"--ignore-failed-sources",
"--version",
"10.0.*",
Expand All @@ -219,7 +219,7 @@
"exec",
"dotnet-ef",
"--source",
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\does-not-exist\\2623c613-5a82-4b5a-9f8a-09e9eb9a98c1",
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\does-not-exist\\52e64396-870b-410c-9140-554cb4546066",
"--ignore-failed-sources",
"--prerelease",
"--yes",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23 AS builder
WORKDIR /app
COPY . .
RUN echo "Built at 20260313162955" > /build-info.txt
RUN echo "Built at 20260324164230" > /build-info.txt
RUN go build -o qots .

FROM mcr.microsoft.com/cbl-mariner/base/core:2.0
Expand Down
Loading