Skip to content

Commit

Permalink
apt-get update seems needed
Browse files Browse the repository at this point in the history
  • Loading branch information
FAMILIAR-project committed Jul 4, 2019
1 parent aed9c26 commit 5873a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ def docker_uncompress_image(tag):
content = "{}\n" \
"RUN tar xf /TuxML/linux-4.13.3.tar.xz -C /TuxML && rm /TuxML/linux-4.13.3.tar.xz\n" \
"RUN tar xf /TuxML/TuxML.tar.xz -C /TuxML && rm /TuxML/TuxML.tar.xz\n" \
"RUN apt-get install -qq -y --no-install-recommends $(cat /dependencies.txt)".format(content)
"RUN apt-get update && apt-get install -qq -y --no-install-recommends $(cat /dependencies.txt)".format(content)
create_dockerfile(content=content, path=".")
docker_build(
image=__IMAGE,
Expand Down

0 comments on commit 5873a52

Please sign in to comment.