-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
29 lines (21 loc) · 925 Bytes
/
Dockerfile
File metadata and controls
29 lines (21 loc) · 925 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
from ubuntu:focal as cpp_builder
COPY tools /tools
RUN apt-get update && \
DEBIAN_FRONTEND="noninteractive" apt-get install -y build-essential cmake git libsndfile-dev && \
cd /tools && mkdir build && cd build && \
cmake .. && \
cmake --build . --target json2ins --config Release && \
cmake --build . --target snd2aiff --config Release
from ubuntu:focal
RUN apt-get update && \
dpkg --add-architecture i386 && \
DEBIAN_FRONTEND="noninteractive" apt-get install -y wget gnupg software-properties-common unzip p7zip cabextract curl nano libsndfile1 wine && \
curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \
apt-get install -y nodejs && \
apt-get install -y wine32 && \
wineconsole --help && \
mkdir /src /dest /job /fw64 && \
rm -rf /var/lib/apt/lists/*
COPY --from=cpp_builder /tools/build/json2ins/json2ins /tools/build/snd2aiff/snd2aiff /fw64/
COPY . /
ENTRYPOINT ["/fw64/entrypoint.sh"]