Skip to content

Commit 79fa306

Browse files
committed
update 05
1 parent 4fc500d commit 79fa306

42 files changed

Lines changed: 4805 additions & 2686 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

07-cloud/03-docker/05-auto-azure-deploy/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20-alpine AS base
1+
FROM node:22-alpine AS base
22
RUN mkdir -p /usr/app
33
WORKDIR /usr/app
44

@@ -17,4 +17,4 @@ COPY ./server/package-lock.json ./
1717
COPY ./server/index.js ./
1818
RUN npm ci --omit=dev
1919

20-
CMD node index.js
20+
CMD ["node", "index.js"]

07-cloud/03-docker/05-auto-azure-deploy/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ If we want a public image we can use the previous uploaded image that we push to
5151
5252
Create a new Github Personal Access Token:
5353

54+
> We have to create a `classic` token because [there is a open issue to migrate to `fine-grained` token](https://github.com/github/roadmap/issues/558).
55+
5456
![07-perfil-settings](./readme-resources/07-perfil-settings.png)
5557

5658
![08-developer-settings](./readme-resources/08-developer-settings.png)
@@ -145,9 +147,11 @@ Create `secrets` in Github repository:
145147

146148
- `AZURE_PUBLISH_PROFILE` (you can download it from Azure portal and paste the value in the secret):
147149

148-
![15-download-publish-profile](./readme-resources/15-download-publish-profile.png)
150+
![15-enable-basic-auth](./readme-resources/15-enable-basic-auth.png)
151+
152+
![16-download-publish-profile](./readme-resources/16-download-publish-profile.png)
149153

150-
![16-publish-profile](./readme-resources/16-publish-profile.png)
154+
![17-publish-profile](./readme-resources/17-publish-profile.png)
151155

152156
Upload changes:
153157

0 commit comments

Comments
 (0)