Skip to content

Commit e36ab13

Browse files
author
luismclglass
committed
Fix Broken Test. The Docker File "ADD" command was in lowercase
1 parent d465fc9 commit e36ab13

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/resources/testAddFile/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM ubuntu
22

33
# Copy testrun.sh files into the container
44

5-
add ./testrun.sh /tmp/
5+
ADD ./testrun.sh /tmp/
66

7-
run cp /tmp/testrun.sh /usr/local/bin/ && chmod +x /usr/local/bin/testrun.sh
7+
RUN cp /tmp/testrun.sh /usr/local/bin/ && chmod +x /usr/local/bin/testrun.sh
88

99
CMD ["testrun.sh"]

0 commit comments

Comments
 (0)