aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 261d649fa11337afa6e50f8d60f349b693f539c4 (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
FROM registry.fedoraproject.org/fedora-toolbox:38
RUN dnf update -y && \
    dnf install -y \
    	git \
    	wine \
	wine-mono \
	python3 \
	msitools \
	python3-simplejson \
	python3-six \
	cmake \
	ninja-build \
	make \
	samba \
	libunwind && \
    dnf clean all && \
    mkdir /opt/msvc/ /build

RUN git config --global --add safe.directory /build
RUN git clone https://github.com/mstorsjo/msvc-wine && \
    ./msvc-wine/vsdownload.py --accept-license --dest /opt/msvc/ && \
    ./msvc-wine/install.sh /opt/msvc/ && \
    rm -rf ~/.wine ./msvc-wine/ && \
    git config --global --add safe.directory '/build'
ENV PATH="/opt/msvc/bin/x64:${PATH}"
WORKDIR /build/