8 lines
127 B
Docker
8 lines
127 B
Docker
# Use a minimal base image
|
|
FROM busybox
|
|
|
|
COPY dbsdata_backup.tar /
|
|
|
|
# Just run sh if this container is ever started
|
|
CMD ["sh"]
|