1
0
mirror of synced 2024-09-26 20:48:26 +02:00
ImHex/dist/Dockerfile

27 lines
799 B
Docker
Raw Normal View History

2021-08-31 23:30:39 +02:00
FROM archlinux:latest
MAINTAINER WerWolv "hey@werwolv.net"
# Install dependencies
RUN pacman -Syy --needed --noconfirm
RUN pacman -S --needed --noconfirm \
git \
cmake \
base-devel \
gcc \
pkg-config \
glfw-x11 \
file \
mbedtls \
python3 \
freetype2 \
gtk3
2021-08-31 23:30:39 +02:00
# Clone ImHex
RUN git clone https://github.com/WerWolv/ImHex --recurse-submodules /root/ImHex
# Build ImHex
RUN mkdir /root/ImHex/build
WORKDIR /root/ImHex/build
RUN cmake .. && make -j
WORKDIR /root/ImHex