summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: e981cf5733619b114170256fd52432f43e691ddb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38


FROM ubuntu:21.04 as build

ENV LANG C.UTF-8
ARG DEBIAN_FRONTEND=noninteractive

RUN dpkg --add-architecture i386 && \
    apt-get update && \
    apt-get upgrade -y && \
    apt-get install -y \
        binutils:i386 \
        gcc-10:i386 \
        g++-10:i386 \
        python3.10 \
        python \
        make \
        cmake \
        git \
        lld \
        libsdl2-dev:i386 \
        zlib1g-dev:i386 \
        libbz2-dev:i386 \
        libpng-dev:i386 \
        libgles2-mesa-dev && \
    ln -sf /usr/bin/python3.10 /usr/bin/python3 && \
    ln -s /usr/bin/gcc-10 /usr/bin/gcc && \
    ln -s /usr/bin/gcc-10 /usr/bin/cc && \
    ln -s /usr/bin/g++-10 /usr/bin/g++ && \
    ln -s /usr/bin/g++-10 /usr/bin/c++

RUN git clone https://github.com/Perlmint/glew-cmake.git && \
    cmake glew-cmake && \
    make -j$(nproc) && \
    make install ARCH64=false

RUN mkdir /soh
WORKDIR /soh