mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-02-06 07:23:37 +08:00
8 lines
360 B
Plaintext
8 lines
360 B
Plaintext
FROM python:3.12
|
|
RUN apt update && apt -y upgrade && apt -y --no-install-recommends install libopenal-dev libsdl2-dev libvorbis-dev cmake clang-format rsync zip
|
|
RUN apk add --update docker openrc
|
|
RUN rc-update add docker boot
|
|
RUN pip install --upgrade pip
|
|
COPY config/requirements.txt ballistica_requirements.txt
|
|
RUN pip install -r ballistica_requirements.txt
|