gvisor/images/tmpfile/Dockerfile

5 lines
152 B
Docker
Raw Normal View History

# Create file under /tmp to ensure files inside '/tmp' are not overridden.
FROM alpine:3.11.5
RUN mkdir -p /tmp/foo \
&& echo 123 > /tmp/foo/file.txt