Skip to content

Commit

Permalink
Merge 35f9b7f into 079101d
Browse files Browse the repository at this point in the history
  • Loading branch information
jooray committed Jan 5, 2024
2 parents 079101d + 35f9b7f commit c3e581a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Dockerfile
Expand Up @@ -2,7 +2,11 @@
#
# Build with:
# docker build --tag=kivy/buildozer .
#
#
# Or for macOS using Docker Desktop:
#
# docker buildx build --platform=linux/amd64 -t kivy/buildozer .
#
# In order to give the container access to your current working directory
# it must be mounted using the --volume option.
# Run with (e.g. `buildozer --version`):
Expand All @@ -24,7 +28,7 @@
# Or simply recreate the directory from the host with:
# rm -rf ~/.buildozer && mkdir ~/.buildozer

FROM ubuntu:20.04
FROM ubuntu:latest

ENV USER="user"
ENV HOME_DIR="/home/${USER}"
Expand Down Expand Up @@ -55,7 +59,7 @@ RUN apt update -qq > /dev/null \
libltdl-dev \
libssl-dev \
libtool \
openjdk-13-jdk \
openjdk-17-jdk \
patch \
pkg-config \
python3-pip \
Expand Down
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -65,6 +65,12 @@ A Dockerfile is available to use buildozer through a Docker environment.
docker build --tag=buildozer .
```

For macOS, build with:

```bash
docker buildx build --platform=linux/amd64 -t kivy/buildozer .
```

- Run with:

```bash
Expand Down

0 comments on commit c3e581a

Please sign in to comment.