You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
228 B
11 lines
228 B
|
8 years ago
|
FROM ubuntu:16.04
|
||
|
|
|
||
|
|
RUN dpkg --add-architecture i386
|
||
|
|
|
||
|
|
RUN apt-get update
|
||
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||
|
|
g++-multilib cmake nasm pkg-config libsdl2-dev:i386
|
||
|
|
|
||
|
|
WORKDIR /build
|
||
|
|
VOLUME /src
|