Skip to content

Commit 3a81da9

Browse files
Apply suggestions from code review
Co-authored-by: Thomas TACQUET <[email protected]>
1 parent 9c8ffdd commit 3a81da9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

pages/account/reference-content/use-case-informational-website.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Your informational website can be based on several different architectures, that
1616
| Based on Object Storage | Cost-effective and highly available, suitable for static content. | Limited to serving static files, no server-side processing. |
1717
| Based on Web Hosting | Easy to set up and manage, suitable for small to medium websites. | Less control over the environment, can be limited in terms of customization. |
1818
| Based on Instances | Full control over the server environment, suitable for complex applications. | More complex setup and management, potentially higher costs. |
19-
| Based on Serverless containers | Easy to deploy, scalable performance and cost, for static and dynamic websites. | Limited control on underlying hardware. |
19+
| Based on Serverless Containers | Easy to deploy, scalable performance and cost, for static and dynamic websites. | Limited control on underlying hardware. |
2020
| Based on Elastic Metal (Aluminium) and Flexible IPs | Dedicated physical resources and high performance, suitable for demanding applications. | Higher costs, requires more technical expertise to manage. |
2121

2222
<Message type="note">

tutorials/hosting-django-webapp-serverless-containers/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Before building and pushing your image, ensure you have [created a Scaleway Cont
146146
- **Registry**: Scaleway Container Registry
147147
- **Registry namespace**: The namespace where you pushed your image
148148
- **Container port**: `8000` as it is the [port](/serverless-containers/reference-content/port-parameter-variable/) exposed in the dockerfile.
149-
- **Resources**: `512 mVCPU` and `512 MB` memory
149+
- **Resources**: `500 mVCPU` and `512 MB` memory
150150
- **Autoscaling**: Set minimum scale to `1` to avoid [cold starts](/serverless-containers/concepts/#cold-start) (optional)
151151

152152
Deployment may take up to a minute.

tutorials/hosting-go-gin-webapp-serverless-containers/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Before building and pushing your image, ensure you have [created a Scaleway Cont
119119
1. Create a `Dockerfile` at the root of your project:
120120
```dockerfile
121121
# Use a lightweight Go image for building
122-
FROM golang:1.22-alpine AS builder
122+
FROM golang:1.25-alpine AS builder
123123

124124
# Set working directory
125125
WORKDIR /app
@@ -171,7 +171,7 @@ Before building and pushing your image, ensure you have [created a Scaleway Cont
171171
- **Registry**: Scaleway Container Registry
172172
- **Registry namespace**: The namespace where you pushed your image
173173
- **Container port**: `8080` (matches the port in the Go app and Dockerfile)
174-
- **Resources**: `256 mVCPU` and `256 MB` memory (Go apps are lightweight)
174+
- **Resources**: `250 mVCPU` and `256 MB` memory (Go apps are lightweight)
175175
- **Autoscaling**: Set minimum scale to `1` to avoid [cold starts](/serverless-containers/concepts/#cold-start) (optional)
176176

177177
Deployment may take up to a minute.

tutorials/hosting-nextjs-webapp-serverless-containers/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Before creating and pushing your image to the registry, make sure you have [Crea
9393

9494
```dockerfile
9595
# Build the Next.js app
96-
FROM node:18-alpine
96+
FROM node:22-alpine
9797
WORKDIR /app
9898
COPY package*.json ./
9999
RUN npm install

0 commit comments

Comments
 (0)