在我的 Ubuntu 18 工作站上,当我检查 Word docx 文件的 mime 类型时,我得到以下信息:
$ file --mime src/tests/data_sources/test_data/word.docx
src/tests/data_sources/test_data/word.docx: application/vnd.openxmlformats-officedocument.wordprocessingml.document; charset=binary
完美,但是如果我在 gitlab CI 实例上启动“ubuntu:18.04”docker 容器,我会得到以下信息:
$ file --mime src/tests/data_sources/test_data/word.docx
src/tests/data_sources/test_data/word.docx: application/octet-stream; charset=binary
这可能是什么原因?以及如何解决它的任何想法?在这两个系统上,我只是克隆一个包含此文件的 git 存储库,然后运行上述命令。
提前致谢