-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from PikalaxALT/feature/docker
Add Dockerfile
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
FROM ubuntu:jammy | ||
|
||
RUN apt-get update -y | ||
RUN apt-get install -y \ | ||
git \ | ||
build-essential \ | ||
pkg-config \ | ||
python3 \ | ||
python3-venv \ | ||
python3-pip \ | ||
python-is-python3 \ | ||
wget | ||
RUN dpkg --add-architecture i386 | ||
RUN mkdir -pm755 /etc/apt/keyrings | ||
RUN wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key | ||
RUN wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources | ||
RUN apt-get update -y | ||
RUN apt-get install -y --install-recommends winehq-stable | ||
RUN python -m venv .venv | ||
RUN . .venv/bin/activate | ||
RUN pip install meson ninja | ||
COPY tools/cw/license.dat /etc/mwerks/license.dat | ||
ENV LM_LICENSE_FILE=/etc/mwerks/license.dat | ||
RUN hash -r | ||
|
||
CMD [ "/bin/sh" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters