Skip to content

Commit 280ed39

Browse files
DOC: Update ReadME with instructions for container registry
1 parent ae7c2b8 commit 280ed39

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# TIAToolbox-Docker
22
Docker Official Image packaging for [TIAToolbox](https://github.com/TissueImageAnalytics/tiatoolbox).
33

4+
### Pull the image from the Github Container Registry:
5+
```bash
6+
docker pull ghcr.io/tissueimageanalytics/tiatoolbox:latest
7+
```
8+
### Use the image as a base image in a Dockerfile:
9+
```bash
10+
FROM ghcr.io/tissueimageanalytics/tiatoolbox:latest
11+
```
12+
### Build the image locally:
413
1. Navigate to the Dockerfile that you want to use, based on the Python version and Operating System that you prefer
514

615
2. Build the Docker image
@@ -27,4 +36,4 @@ To add your own script and run it through the Docker container, first copy your
2736
```bash
2837
COPY /path/to/<script>.py .
2938
CMD ["python3", "<script>.py"]
30-
```
39+
```

0 commit comments

Comments
 (0)