-
Notifications
You must be signed in to change notification settings - Fork 502
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
Dockerfile is buggy #1798
Comments
Yes I confirm ;-) the DockerFile doesn't work AS IS with ubuntu:latest (which is now a 24.04) ... but it works as expected with ubuntu:22.04 ! Here is a fork : https://github.com/manatlan/buildozer and here is a simple PR : #1804 ;-) |
#1804 merged, anything else we should fix? |
I'm new in github issues tracker. Do i need to do something with awaiting-reply label? Do i need to close the issue? |
If the issue got fixed via #1804, please close the issue.
|
No, my issue is wider, not just ubuntu version. Nothing else, but only things, that i mentioned. |
Description
Please, refer to https://buildozer.readthedocs.io/en/latest/installation.html for installation tips for Dockerfile.
FROM ubuntu:22.04
libltdl-dev
,wget
,vim
.COPY --chown=user:user . ${SRC_DIR}
, because we run container with--volume "$PWD":/home/user/hostcwd
.["/bin/bash"]
not["buildozer"]
, because, when we run container with--volume "$HOME/.buildozer":/home/user/.buildozer
and-it
, we can edit some code withvim
, or dobuildozer appclean
or something else.The text was updated successfully, but these errors were encountered: