Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
LalithShiyam authored Nov 22, 2024
1 parent 33bb41e commit 0ece189
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit 0ece189

Please sign in to comment.