# Use the official Python image from the Docker Hub
FROM python:3.12-slim

# Set the working directory in the container
WORKDIR /app

# Copy the current directory contents into the container at /app
COPY . /app

# Install pak
RUN pip install --upgrade pip
RUN pip install .

# Run hello when the container launches
CMD ["hello"]