File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed
Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,8 @@ DOCKERFILES = \
111111 debian11 \
112112 debian12 \
113113 fedora40 \
114- fedora41
114+ fedora41 \
115+ manjaro
115116
116117docker-% : tests/docker/Dockerfile.%
117118 docker build -t $* -f $< .
Original file line number Diff line number Diff line change 1+ FROM manjarolinux/base:latest
2+
3+ RUN pacman -Sy --noconfirm base-devel protobuf wxwidgets-gtk3
4+
5+ RUN useradd app
6+ RUN mkdir -p /home/app
7+ RUN chown app /home/app
8+ USER app
9+ WORKDIR /home/app
10+
11+ COPY --chown=app:app arch arch
12+ COPY --chown=app:app build build
13+ COPY --chown=app:app dep dep
14+ COPY --chown=app:app doc doc
15+ COPY --chown=app:app extras extras
16+ COPY --chown=app:app lib lib
17+ COPY --chown=app:app scripts scripts
18+ COPY --chown=app:app src src
19+ COPY --chown=app:app tests tests
20+ COPY --chown=app:app tools tools
21+ COPY --chown=app:app Makefile .
22+ COPY --chown=app:app build.py .
23+ COPY --chown=app:app config.py .
24+ COPY --chown=app:app protocol.h .
25+ COPY --chown=app:app README.md .
26+
27+ RUN make
You can’t perform that action at this time.
0 commit comments