Skip to content

Commit 64d1da0

Browse files
authored
fix: correct invalid docker image tags in base-image docs (#92)
1 parent cd66abe commit 64d1da0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/template/base-image.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Choose from predefined base images or use custom ones:
3434

3535
```typescript JavaScript & TypeScript
3636
// Predefined base images
37-
template.fromUbuntuImage("lts"); // ubuntu:lts
37+
template.fromUbuntuImage("jammy"); // ubuntu:jammy
3838
template.fromUbuntuImage("22.04"); // ubuntu:22.04
39-
template.fromDebianImage("slim"); // debian:slim
39+
template.fromDebianImage("stable-slim"); // debian:stable-slim
4040
template.fromDebianImage("bullseye"); // debian:bullseye
4141
template.fromPythonImage("3.13"); // python:3.13
4242
template.fromPythonImage("3.11"); // python:3.11
@@ -64,9 +64,9 @@ template.fromDockerfile(dockerfileContent);
6464

6565
```python Python
6666
# Predefined base images
67-
template.from_ubuntu_image("lts") # ubuntu:lts
67+
template.from_ubuntu_image("jammy") # ubuntu:jammy
6868
template.from_ubuntu_image("22.04") # ubuntu:22.04
69-
template.from_debian_image("slim") # debian:slim
69+
template.from_debian_image("stable-slim") # debian:stable-slim
7070
template.from_debian_image("bullseye") # debian:bullseye
7171
template.from_python_image("3.13") # python:3.13
7272
template.from_python_image("3.11") # python:3.11

0 commit comments

Comments
 (0)