diff --git a/Makefile b/Makefile index f6473cac..395ccc59 100644 --- a/Makefile +++ b/Makefile @@ -86,6 +86,8 @@ ghcr-image-stable : stable-image docker push ghcr.io/allenai/olmo-core:$(STABLE_IMAGE)-v$(VERSION_SHORT) docker tag olmo-core:$(STABLE_IMAGE) ghcr.io/allenai/olmo-core:$(STABLE_IMAGE)-v$(VERSION) docker push ghcr.io/allenai/olmo-core:$(STABLE_IMAGE)-v$(VERSION) + docker tag olmo-core:$(STABLE_IMAGE) ghcr.io/allenai/olmo-core:latest + docker push ghcr.io/allenai/olmo-core:latest .PHONY : beaker-image-stable beaker-image-stable : stable-image diff --git a/src/Dockerfile b/src/Dockerfile index 5ede64b6..186cedbb 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -90,6 +90,7 @@ RUN pip install --no-cache-dir '.[all]' && \ pip uninstall -y ai2-olmo-core && \ rm -rf * +LABEL org.opencontainers.image.source https://github.com/allenai/OLMo-core WORKDIR /app/olmo-core #########################################################################