Skip to content

Commit

Permalink
Work around testing image build failure.
Browse files Browse the repository at this point in the history
The RUN was throwing errors with current docker, but we can easily
enough just make it another ADD.
  • Loading branch information
anholt committed Sep 24, 2024
1 parent 1c67f92 commit 86c2899
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion testing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ ADD etc/group /etc
ADD etc/passwd /etc
ADD etc/profile /etc
ADD integration_tests /integration_tests
RUN echo "<html><body><h1>It works on Kerla!</h1></body></html>" > /var/www/html/index.html
ADD var/www/html/index.html /var/www/html/index.html

CMD ["/bin/sh"]
7 changes: 7 additions & 0 deletions testing/var/www/html/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<html>

<body>
<h1>It works on Kerla!</h1>
</body>

</html>

0 comments on commit 86c2899

Please sign in to comment.