8 lines
108 B
Text
8 lines
108 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
RUN "uptime";
|
||
|
|
||
|
COPY "${JOBFILE_DIR}/testfile.txt" "/tmp";
|
||
|
|
||
|
RUN "rm /tmp/testfile.txt";
|