Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- Dockerfile +36 -0
Dockerfile
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use the official Python 3.9 image
|
2 |
+
FROM python:3.9
|
3 |
+
|
4 |
+
# Set the working directory
|
5 |
+
WORKDIR /app
|
6 |
+
|
7 |
+
# Copy your FastAPI code and setup scripts
|
8 |
+
COPY . .
|
9 |
+
|
10 |
+
# Install dependencies via pip
|
11 |
+
RUN pip install --upgrade pip
|
12 |
+
|
13 |
+
# Install PyTorch with CUDA support
|
14 |
+
RUN pip install torch --extra-index-url https://download.pytorch.org/whl/cu118
|
15 |
+
|
16 |
+
# Install other dependencies
|
17 |
+
RUN pip install \
|
18 |
+
nltk sacremoses pandas regex mock \
|
19 |
+
"transformers>=4.33.2" mosestokenizer \
|
20 |
+
bitsandbytes scipy accelerate datasets \
|
21 |
+
"flash-attn>=2.1" sentencepiece
|
22 |
+
|
23 |
+
# Download NLTK punkt tokenizer
|
24 |
+
RUN python3 -c "import nltk; nltk.download('punkt')"
|
25 |
+
|
26 |
+
# Clone and install IndicTrans2 toolkit
|
27 |
+
RUN git clone https://github.com/VarunGumma/IndicTransToolkit && \
|
28 |
+
cd IndicTransToolkit && \
|
29 |
+
pip install --editable ./ && \
|
30 |
+
cd ..
|
31 |
+
|
32 |
+
# Expose port 7860 for FastAPI (or change if needed)
|
33 |
+
EXPOSE 7860
|
34 |
+
|
35 |
+
# Start the FastAPI app
|
36 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|