Newer
Older
Matthew K Defenderfer
committed
# Use the official Python image from the Docker Hub
FROM python:3.12-slim
Matthew K Defenderfer
committed
# Set the working directory in the container
WORKDIR /app
Matthew K Defenderfer
committed
# Copy the current directory contents into the container at /app
COPY . /app
Matthew K Defenderfer
committed
# Install pak
RUN pip install --upgrade pip
RUN pip install .
Matthew K Defenderfer
committed
# Run hello when the container launches
CMD ["hello"]