We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@abacaj Would be really helpful to have Dockerfile you've been using in your demo
The text was updated successfully, but these errors were encountered:
I created a Dockerfile, look in the requests. If you have any questions, just ask :)
Sorry, something went wrong.
# syntax=docker/dockerfile:1.5-labs ARG GIT_TAG=${GIT_TAG:-main} FROM python:3.10-slim AS app ARG GIT_TAG ENV PIP_NO_CACHE_DIR=yes \ PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \ HOME=/app \ PATH="${PATH}:/app/.local/bin" USER 1000 WORKDIR /app ADD https://github.com/abacaj/mpt-30B-inference.git#${GIT_TAG} . RUN pip install -r requirements.txt CMD [ "python", "inference.py" ]
No branches or pull requests
@abacaj Would be really helpful to have Dockerfile you've been using in your demo
The text was updated successfully, but these errors were encountered: