going with the 'tip' version and very simple cmd explanation for now

This commit is contained in:
smclacke
2026-04-21 15:25:03 +02:00
committed by Sarah McLacken
parent 39139bb1d5
commit b585c8bc6e
+4 -16
View File
@@ -167,22 +167,10 @@ For the full Alpine desktop environment, see [leaningtech/alpine-image](https://
For more details, see [CheerpX Custom Images documentation](https://cheerpx.io/docs/guides/custom-images).
### Example: Python3 REPL
The `Deploy` workflow takes into account the `CMD` specified in the Dockerfile. To build a REPL you can simply apply this patch and deploy:
```
Replace: CMD [ "/bin/bash" ]
With: CMD [ "/usr/bin/python3" ]
```
> [!TIP] Python3 REPL
>
> The `Deploy` workflow takes into account the `CMD` specified in the Dockerfile. To build a REPL you can simply apply this patch and deploy:
> ```
> Replace: CMD [ "/bin/bash" ]
> With: CMD [ "/usr/bin/python3" ]
> ```
> [!TIP]
> Python3 REPL
>
> The `Deploy` workflow takes into account the `CMD` specified in the Dockerfile. To build a REPL you can simply change `CMD [ "/bin/bash" ]` to `CMD [ "/usr/bin/python3" ]` and deploy.
### Claude AI Integration