GramAPP / Dockerfile
Merlintxu's picture
Update Dockerfile
9ef7dee
# Dockerfile
FROM huggingface/transformers-pytorch-gpu
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["streamlit", "run", "app.py"]