mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 06:59:11 +00:00
Fix Docker image build by using Ubuntu old-release apt repository
Ubuntu 19.10 is EOL, but due to Nvidia library compatibility issue, the base image of the Dockerfile wasn't upgraded to newer Ubuntu yet, and a standard apt repository site won't be reachable in this case, which makes the Docker image not able to be built. Before the base image upgrade, a workaround to use old-releases apt repository can make the image be able to be built again.
This commit is contained in:
parent
2fffeeadf1
commit
c4e73cfbc7
@ -18,6 +18,9 @@ LABEL maintainer="Danielle Douglas <ddouglas87@gmail.com>"
|
||||
LABEL maintainer="Lhanjian <lhjay1@foxmail.com>"
|
||||
LABEL maintainer="K4YT3X <k4yt3x@k4yt3x.com>"
|
||||
|
||||
RUN sed -i 's/archive.ubuntu.com/old-releases.ubuntu.com/g' sources.list
|
||||
RUN sed -i 's/security.ubuntu.com/old-releases.ubuntu.com/g' sources.list
|
||||
|
||||
# run installation
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y git-core \
|
||||
|
Loading…
Reference in New Issue
Block a user