Skip to content

Commit

Permalink
feat: aggiornato readme
Browse files Browse the repository at this point in the history
Aggiornato README con speigazioni su come creare la propria immagine docker partendo da quella base.
  • Loading branch information
ncvescera authored Aug 8, 2023
1 parent 7b611a8 commit b42419c
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions README.md
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
```

0 comments on commit b42419c

Please sign in to comment.