Spaces:
Runtime error
Runtime error
| # Use the official docker-android image as a base | |
| FROM budtmo/docker-android:emulator_11.0 | |
| # Set environment variables for the emulator configuration | |
| # You can change these values to your desired settings | |
| ENV EMULATOR_DEVICE="Samsung Galaxy S10" | |
| ENV WEB_VNC=true | |
| # Expose the port for the web VNC client | |
| EXPOSE 6080 | |
| # The base image already contains the necessary entrypoint to start the emulator, | |
| # so we don't need to add a CMD or ENTRYPOINT here. |