-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
43 lines (35 loc) · 809 Bytes
/
Dockerfile
File metadata and controls
43 lines (35 loc) · 809 Bytes
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
39
40
41
42
43
FROM debian:12-slim
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y \
xorg-dev \
wget \
cmake \
make \
gcc \
g++ \
curl \
unzip \
libudev-dev \
libflac-dev \
libopenal-dev \
libvorbis-dev \
libfuse2 \
file
COPY build_csfml.sh /build_csfml.sh
RUN chmod a+x /build_csfml.sh
RUN NOSUDO="yes" /build_csfml.sh
RUN mkdir -p /app/
RUN mkdir -p /out
WORKDIR /app
COPY assets /app/assets
COPY include /app/include
COPY lib /app/lib
COPY src /app/src
COPY fbttf.png /app/fbttf.png
COPY Makefile /app/Makefile
COPY my_rpg.desktop /app/my_rpg.desktop
COPY deps /app/deps
ENV APPIMAGE_EXTRACT_AND_RUN 1
RUN make -C /app app
CMD cp ./FlashBackToTheFuture-x86_64.AppImage /out