mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-19 04:09:41 +00:00
Create repository
This commit is contained in:
commit
ce941c146a
127 changed files with 16162 additions and 0 deletions
10
tools/docker/archlinux
Normal file
10
tools/docker/archlinux
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM archlinux/base
|
||||
|
||||
RUN pacman -Sy --noconfirm && pacman -S --noconfirm boost cmake base-devel git sudo
|
||||
RUN useradd --system --create-home aur
|
||||
RUN echo 'aur ALL=NOPASSWD: /usr/bin/pacman' > /etc/sudoers.d/aur
|
||||
RUN cd /home/aur && runuser -u aur -- git clone https://aur.archlinux.org/yay.git && cd yay && runuser -u aur -- makepkg -si --noconfirm && cd -
|
||||
RUN runuser -u aur -- yay -Sy --noconfirm wxgtk3-dev
|
||||
RUN ln -sf /usr/bin/wx-config-gtk3 /usr/bin/wx-config
|
||||
|
||||
ENTRYPOINT /usr/bin/bash
|
4
tools/docker/debian
Normal file
4
tools/docker/debian
Normal file
|
@ -0,0 +1,4 @@
|
|||
FROM debian:stable
|
||||
|
||||
RUN apt-get -qq update
|
||||
RUN apt-get -qq install -y cmake libboost-all-dev build-essential libwxgtk3.0-dev
|
4
tools/docker/fedora
Normal file
4
tools/docker/fedora
Normal file
|
@ -0,0 +1,4 @@
|
|||
FROM fedora:latest
|
||||
|
||||
RUN dnf upgrade -y
|
||||
RUN dnf install -y cmake boost boost-devel make automake gcc gcc-c++ wxBase3-devel wxGTK3-devel
|
Loading…
Add table
Add a link
Reference in a new issue