1
0
mirror of synced 2025-01-31 12:03:42 +01:00
lindbergh-loader/Dockerfile

20 lines
459 B
Docker
Raw Permalink Normal View History

2025-01-09 11:03:03 +00:00
FROM ubuntu:22.04 AS lindbergh-build
RUN dpkg --add-architecture i386 \
2025-01-09 11:03:03 +00:00
&& apt update \
&& apt install -y --no-install-recommends \
build-essential \
gcc-multilib \
2024-12-23 14:41:01 +00:00
freeglut3-dev:i386 \
libsdl2-dev:i386 \
libfaudio-dev:i386 \
2025-01-09 11:03:03 +00:00
&& apt clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /lindbergh-loader
2025-01-09 11:03:03 +00:00
COPY . .
2025-01-09 11:19:27 +00:00
# Explicitly set the output directory
RUN make && mkdir -p /output && cp -r ./build /output