5 lines
90 B
Docker
5 lines
90 B
Docker
FROM scratch
|
|
RUN echo "hello world"
|
|
COPY example.txt /
|
|
ENV VAR=1
|
|
CMD ["sleep", "infinity"] |