Skip to content

Commit 40900e8

Browse files
[Automated] Update Playground Manifests (dotnet#12895)
Co-authored-by: davidfowl <davidfowl@users.noreply.github.com>
1 parent ddeddea commit 40900e8

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

playground/keycloak/Keycloak.AppHost/aspire-manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"env": {
2626
"KC_BOOTSTRAP_ADMIN_USERNAME": "admin",
2727
"KC_BOOTSTRAP_ADMIN_PASSWORD": "{keycloak-password.value}",
28-
"KC_HEALTH_ENABLED": "true"
28+
"KC_HEALTH_ENABLED": "true",
29+
"KC_FEATURES": "opentelemetry"
2930
},
3031
"bindings": {
3132
"http": {

playground/python/Python.AppHost/fastapi-uvicorn-app.Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ RUN groupadd --system --gid 999 appuser && useradd --system --gid 999 --uid 999
99
# Set working directory
1010
WORKDIR /app
1111

12+
# Copy pyproject.toml for dependency installation
13+
COPY pyproject.toml /app/pyproject.toml
14+
15+
# Install dependencies using pip
16+
RUN apt-get update \
17+
&& apt-get install -y --no-install-recommends build-essential \
18+
&& pip install --no-cache-dir . \
19+
&& apt-get purge -y --auto-remove build-essential \
20+
&& rm -rf /var/lib/apt/lists/*
21+
1222
# Copy application files
1323
COPY --chown=appuser:appuser . /app
1424

playground/withdockerfile/WithDockerfile.AppHost/dynamic-sync.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23 AS builder
22
WORKDIR /app
33
COPY . .
4-
RUN echo "Built at 20251110161957" > /build-info.txt
4+
RUN echo "Built at 20251124082556" > /build-info.txt
55
RUN go build -o qots .
66

77
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0

0 commit comments

Comments
 (0)