Skip to content

Commit

Permalink
remove HF_AUTH_TOKEN
Browse files Browse the repository at this point in the history
  • Loading branch information
gadicc committed Sep 16, 2022
1 parent d94eab8 commit 2ae47ff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ RUN pip3 install -r requirements.txt
ADD server.py .
EXPOSE 8000

# Add your huggingface auth key here
ENV HF_AUTH_TOKEN=***REMOVED***
# Dev: docker build --build-arg HF_AUTH_TOKEN=${HF_AUTH_TOKEN} ...
# Banana: currently, comment out ARG and set by hand ENV line.
ARG HF_AUTH_TOKEN
ENV HF_AUTH_TOKEN=${HF_AUTH_TOKEN}

# Which model to download and use; fork / downstream specific.
ADD DOWNLOAD_VARS.py .
Expand Down

0 comments on commit 2ae47ff

Please sign in to comment.