-
Notifications
You must be signed in to change notification settings - Fork 10.2k
能否提供arm64版本的docker #1553
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
有这个计划,正在做。可惜我现在手头没有arm64的机器……还没踩这个坑…… |
在我的树莓派4B上尝试运行的结果如下,供参考。(虽然只是警告但实际上会运行失败退出)
|
#1589 Awaiting merging |
用nginx启动试试,把Dockerfile最后一个阶段改为 FROM nginx:latest
COPY --from=python-env /app/site /usr/share/nginx/html/cook
COPY howtocook.conf /etc/nginx/conf.d
EXPOSE 5000
CMD [ "nginx","-g","daemon off;" ] nginx配置文件参考 server {
listen 5000;
server_name localhost;
location / {
root /usr/share/nginx/html/cook;
index index.html index.htm;
try_files $uri $uri/ $uri/index.html /index.html;
}
} |
请问能否提供arm64版本的docker,我想在我的arm板子上部署这个,非常感谢
The text was updated successfully, but these errors were encountered: