diff --git a/Dockerfile b/Dockerfile
index 82f47d0..7243e52 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,8 +5,8 @@ RUN apk add --no-cache python3 py3-build py3-hatchling && \
     python3 -m build .
 
 FROM alpine:3.18
-COPY --from=build /build/dist/recipes-*-py3-none-any.whl /
+COPY --from=build /build/dist/comfy-recipes-*-py3-none-any.whl /
 RUN apk add --no-cache python3 py3-pip && \
-    pip install /recipes-*-py3-none-any.whl && \
+    pip install /comfy-recipes-*-py3-none-any.whl && \
     apk del py3-pip
 ENTRYPOINT ["/usr/bin/recipes-cli"]
diff --git a/pyproject.toml b/pyproject.toml
index 12f1a3f..aad751c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,7 @@ requires = ["hatchling"]
 build-backend = "hatchling.build"
 
 [project]
-name = "recipes"
+name = "comfy-recipes"
 version = "0.0.1"
 description = "Smart recipe static site generator"
 authors = [{ name = "Emi Vasilek", email = "emi.vasilek@gmail.com" }]