5 lines
98 B
Docker
5 lines
98 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN mkdir /test && \
|
|
fallocate -l 100m /test/dummy && \
|
|
rm /test/dummy |