Aligner / Dockerfile
Yakova's picture
Update Dockerfile
2838316 verified
raw
history blame contribute delete
268 Bytes
# Builder stage
FROM mbonea/forced-aligner
# Set the working directory
WORKDIR /srv
RUN pip install uvicorn fastapi huggingface-hub==0.23.2
RUN chown -R admin:admin /srv
RUN chmod 755 /srv
USER admin
CMD python NeMo-Forced-Aligner/web.py
# Expose port
EXPOSE 7860