I’m trying to build a docker image but it throws an error and I can’t seem to figure out why.
It is stuck at RUN apt-get -y update
with the following error messages:
4.436 E: Release file for http://security.debian.org/debian-security/dists/buster/updates/InRelease is not valid yet (invalid for another 2d 16h 26min 22s). Updates for this repository will not be applied.
4.436 E: Release file for http://deb.debian.org/debian/dists/buster-updates/InRelease is not valid yet (invalid for another 3d 10h 28min 24s). Updates for this repository will not be applied.
executor failed running [/bin/sh -c apt-get -y update]: exit code: 100
Here’s my docker file:
FROM python:3.7
# Adding trusting keys to apt for repositories
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
# Adding Google Chrome to the repositories
RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
# Updating apt to see and install Google Chrome
RUN apt-get -y update
# Magic happens
RUN apt-get install -y google-chrome-stable
# Installing Unzip
RUN apt-get install -yqq unzip
# Download the Chrome Driver
RUN CHROMEDRIVER_RELEASE=$(curl http://chromedriver.storage.googleapis.com/LATEST_RELEASE) &&
echo "Chromedriver latest version: $CHROMEDRIVER_RELEASE" &&
wget --quiet "http://chromedriver.storage.googleapis.com/$CHROMEDRIVER_RELEASE/chromedriver_linux64.zip" &&
unzip chromedriver_linux64.zip &&
rm -rf chromedriver_linux64.zip &&
mv chromedriver /usr/local/bin/chromedriver &&
chmod +x /usr/local/bin/chromedriver &&
chromedriver --version
# Set display port as an environment variable
ENV DISPLAY=:99
WORKDIR /
COPY requirements.txt ./
RUN pip install --upgrade pip && pip install -r requirements.txt
COPY . .
RUN pip install -e .
What is happening here?
8
Answers
It’s answered here https://askubuntu.com/questions/1059217/getting-release-is-not-valid-yet-while-updating-ubuntu-docker-container
If you are using docker desktop, please check if enough resources are set in settings/preferences.
Eg. memory and disk requirement
This happens specific to OS also.
I had same issues running MariaDB on my Windows 10.
Check for Docker Settings:
Remove below block, and it should work:
In my case, docker was still using the cached
RUN apt update && apt upgrade
command, thus not updating the package sources.The solution was to build the docker image once with the
--no-cache
flag:I get this
ERROR: executor failed running [...]: exit code: 100
error message when I mistyped the name of a package.This was in my Dockerfile:
instead of this:
(see the difference between the underscore and the dash.)
Fixing the package name solved the problem.
I had this error and I think it was because I installed
buildx
but the version of the plugin didn’t match my docker installation. Uninstalling buildx resolved the issue for me:For me adding this to the Dockerfile did the job:
I solved this issue by adding the
-y
flag to apt-get install e.g.