j
revert to teamjn dockerhub image for testing retries
a600d95
raw
history blame
211 Bytes
FROM teamjn/reaspeech-hf:latest
WORKDIR /app
USER root
RUN mkdir /.cache
RUN chown -R 1000:1000 .
RUN chown -R 1000:1000 /.cache
USER 1000:1000
ENV APP_ENV=demo
ENTRYPOINT ["python3", "app/run.py"]
EXPOSE 9000