diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ea35720 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +# Base image +FROM python:3.10-slim + +# Install MOOSE from PyPI +RUN pip install moosez + +# Set working directory +WORKDIR /app + +# Entry point for the MOOSE CLI +ENTRYPOINT ["moosez"] + +# Default command +CMD ["-h"]