RemoteMojo / Dockerfile
SoUmNerd's picture
Update Dockerfile
7104d7d
raw
history blame
336 Bytes
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y curl && apt-get install -y python3 && apt-get install -y python3-pip
RUN pip install fastapi uvicorn
RUN curl https://get.modular.com | \
MODULAR_AUTH=mut_e87f7861fb9a4d4aa311afb0491b0398 sh -
RUN modular install mojo
COPY . .
CMD ["uvicorn", "main:app", "--port", "7860"]