We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a287031 commit b567f1aCopy full SHA for b567f1a
Dockerfile
@@ -18,4 +18,8 @@ RUN cargo install --path .
18
19
FROM registry.access.redhat.com/ubi9-micro:latest
20
COPY --from=builder /usr/local/cargo/bin/newdoc /usr/local/bin/newdoc
21
+# When running this container interactively, use `-v .:/mnt/newdoc:Z`
22
+# to mount the current directory in the host to the container working dir.
23
+VOLUME ["/mnt/newdoc"]
24
+WORKDIR "/mnt/newdoc"
25
CMD ["newdoc"]
0 commit comments