Skip to content

Commit 86c2899

Browse files
committed
Work around testing image build failure.
The RUN was throwing errors with current docker, but we can easily enough just make it another ADD.
1 parent 1c67f92 commit 86c2899

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

testing/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ ADD etc/group /etc
6565
ADD etc/passwd /etc
6666
ADD etc/profile /etc
6767
ADD integration_tests /integration_tests
68-
RUN echo "<html><body><h1>It works on Kerla!</h1></body></html>" > /var/www/html/index.html
68+
ADD var/www/html/index.html /var/www/html/index.html
6969

7070
CMD ["/bin/sh"]

testing/var/www/html/index.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<html>
2+
3+
<body>
4+
<h1>It works on Kerla!</h1>
5+
</body>
6+
7+
</html>

0 commit comments

Comments
 (0)