mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-02 00:42:33 +01:00
16 lines
245 B
Docker
16 lines
245 B
Docker
|
FROM base/archlinux
|
||
|
|
||
|
RUN pacman -Syy --noconfirm \
|
||
|
core/gcc \
|
||
|
make \
|
||
|
extra/boost \
|
||
|
extra/cmake \
|
||
|
extra/ffmpeg \
|
||
|
extra/bullet \
|
||
|
community/glm \
|
||
|
extra/openal \
|
||
|
extra/sdl2 \
|
||
|
extra/qt5-base
|
||
|
|
||
|
CMD ["/bin/bash"]
|