Files
mrvacommander/client/containers/mrvadata/Dockerfile
Michael Hohn 1e2df515e3 Set up and push Docker containers for demonstration purposes
These containers take the place of a desktop install
2024-09-04 15:52:18 -07:00

15 lines
373 B
Docker

# Use a minimal base image
FROM busybox
# This data container holds data from existing runs. It cannot be built without
# ready data.
# Mirror parts of the host directory structure in the container
COPY tmp/dbstore-data /data/mrvacommander/dbstore-data
COPY tmp/scratch /data/mrvacommander/qldbtools/scratch
# Just run sh if this container is ever started
CMD ["sh"]