diff --git a/Dockerfile b/Dockerfile
index 87e038d462b2476bad0da0cbb89cd9ff1d9ce6f8..443aeb8e1f0dde93d2beb17e46e995e3023b796e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,13 +1,15 @@
+# Use the official Python image from the Docker Hub
 FROM python:3.12-slim
 
-# Set working directory
+# Set the working directory in the container
 WORKDIR /app
 
-# Copy the package files
-COPY . .
+# Copy the current directory contents into the container at /app
+COPY . /app
 
-# Install the package
+# Install pak
+RUN pip install --upgrade pip
 RUN pip install .
 
-# Command to run the package (adjust as needed)
-CMD ["python", "-c", "from pak.hello import hello; print(hello())"]
\ No newline at end of file
+# Run hello when the container launches
+CMD ["hello"]
\ No newline at end of file