-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Aggiornato README con speigazioni su come creare la propria immagine docker partendo da quella base.
- Loading branch information
Showing
1 changed file
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,31 @@ | ||
# rofilobook | ||
Docker immagine per Kubeflow | ||
Immagini Docker per Kubeflow | ||
|
||
## Base | ||
|
||
Immagine base da cui partire per creare immagini con dipendenze specifiche per i differenti task. | ||
|
||
**Pull dell'immagine:** | ||
```bash | ||
docker pull ghcr.io/typing-monkeys/rofilobook:latest | ||
``` | ||
|
||
**Template per creare la propria immagine:** | ||
```dockerfile | ||
FROM ghcr.io/typing-monkeys/rofilobook:latest | ||
|
||
USER root | ||
# installa dipendenze con apt, modifica file di configurazione, | ||
# o qualunque altra operazione che necessiti dei permessi di root | ||
|
||
USER jovyan | ||
|
||
# installa pacchetti con pip o qualunque altra operazione che | ||
# NON richieda i permessi di root | ||
``` | ||
|
||
## Interpolation Task | ||
|
||
```bash | ||
docker pull ghcr.io/typing-monkeys/rofilobook:main | ||
docker pull ghcr.io/typing-monkeys/rofilobook:interpolation | ||
``` |