如何使用Docker将PyQt5应用程序构建为Windows可执行文件?

时间:2019-06-19 20:31:03

标签: python windows docker pyqt pyqt5

对于使用Docker在其计算机上未安装Python环境的客户端,将Windows文件夹中的以下简单models/user脚本转换为 const M_Bank = require('../models/user'); exports.getTest = function(req,res){ return M_Bank .findAll() .then(M_Bank => res.status(200).send(M_Bank)) .catch((error) => { console.log(error.toString()); res.status(400).send(error) }); exports.index = function (request, response, next) { response.json((M_Bank.findAll())); }; }; 文件的最佳方法是什么?

hello_world.py

我想要这个特定的用例,因为我想使用Gitlab和Docker for PyQt5设置CI / CD部署

0 个答案:

没有答案