Skip to content

Instantly share code, notes, and snippets.

@emersonmx
emersonmx / Dockerfile
Last active May 17, 2025 14:43
Setup a game with Pygame CE for Android
FROM python:3.11-slim
ENV USER="user"
ENV HOME_DIR="/home/${USER}"
ENV WORK_DIR="${HOME_DIR}/hostcwd" \
SRC_DIR="${HOME_DIR}/src" \
PATH="${HOME_DIR}/.local/bin:${PATH}"
ENV LANG="en_US.UTF-8" \
LANGUAGE="en_US.UTF-8" \
LC_ALL="en_US.UTF-8"