-
Matthew K Defenderfer authored9818072b
Dockerfile 252 B
FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Copy the package files
COPY . .
# Install the package
RUN pip install .
# Command to run the package (adjust as needed)
CMD ["python", "-c", "from pak.hello import hello; print(hello())"]