You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To resolve this issue, the Dockerfile should be modified to use the correct URL for downloading the step_383500_slim.tar.zstd file. Update the following line in the Dockerfile:
Before
RUN wget -c https://mystic.the-eye.eu/public/AI/GPT-J-6B/step_383500_slim.tar.zstd
After
RUN wget -c https://the-eye.eu/public/AI/GPT-J-6B/step_383500_slim.tar.zstd
The text was updated successfully, but these errors were encountered:
Issue Description:
The current Dockerfile is facing an issue where it is unable to retrieve the file step_383500_slim.tar.zstd from a specific URL. The Dockerfile is using the wget command to download the file from https://mystic.the-eye.eu/public/AI/GPT-J-6B/step_383500_slim.tar.zstd, but it appears that the file is not available at this particular URL. The correct URL for the file is https://the-eye.eu/public/AI/GPT-J-6B/step_383500_slim.tar.zstd, where the file can be successfully obtained.
Suggested Solution:
To resolve this issue, the Dockerfile should be modified to use the correct URL for downloading the step_383500_slim.tar.zstd file. Update the following line in the Dockerfile:
Before
After
The text was updated successfully, but these errors were encountered: