Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/scripts/validate_bicep.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

# set the bicep binary name based on the OS
if os.name == 'nt':
bicep_bin = 'rad-bicep.exe'
bicep_bin = 'bicep.exe'
home_path = os.environ['USERPROFILE']
else:
bicep_bin = 'rad-bicep'
bicep_bin = 'bicep'
home_path = os.environ['HOME']

# set the default Bicep path based on the runner
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate-bicep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:

- name: Setup and verify bicep CLI
run: |
curl -Lo rad-bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64
chmod +x ./rad-bicep
./rad-bicep --version
curl -Lo bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64
chmod +x ./bicep
./bicep --version

- name: Verify Bicep files
run: python ./.github/scripts/validate_bicep.py
6 changes: 3 additions & 3 deletions samples/dapr/nodeapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

265 changes: 155 additions & 110 deletions samples/demo/client/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions samples/demo/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"@types/react-router-dom": "^5.3.3",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-router": "^7.10.1",
"react-router-dom": "^7.10.1",
"react-router": "^7.12.0",
"react-router-dom": "^7.12.0",
"typescript": "^5.9.3",
"web-vitals": "^5.1.0"
},
Expand Down
135 changes: 60 additions & 75 deletions samples/demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions samples/volumes/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
FROM alpine:3.14
RUN apk add --no-cache python3 py3-pip
FROM python:3.14-alpine
COPY ./src/requirements.txt /app/requirements.txt
WORKDIR /app
RUN python3 -m pip install --upgrade pip setuptools wheel \
&& python3 -m pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY ./src /app
ENTRYPOINT [ "python3" ]
CMD [ "app.py" ]
Loading