mirror of
https://github.com/deepseek-ai/Janus.git
synced 2025-02-23 14:18:58 -05:00
adds Dockerfile
This commit is contained in:
parent
a42ad6dab3
commit
74c9d4ea44
1
.gitignore
vendored
1
.gitignore
vendored
@ -419,3 +419,4 @@ tags
|
|||||||
.vscode
|
.vscode
|
||||||
.github
|
.github
|
||||||
generated_samples/
|
generated_samples/
|
||||||
|
huggingface
|
||||||
|
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# 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"]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user