Janus/Dockerfile

17 lines
399 B
Docker
Raw Normal View History

2025-01-27 15:50:43 -05:00
# Use the PyTorch base image
FROM pytorch/pytorch:latest
# Set the working directory inside the container
WORKDIR /app
# Copy the current directory into the container
COPY . /app
# Install necessary Python packages
RUN pip install -e . && \
pip install fastapi python-multipart uvicorn
# Set the entrypoint for the container to launch your FastAPI app
CMD ["python", "demo/fastapi_app.py"]