-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a docker test for Manjaro Linux.
- Loading branch information
1 parent
8ff0153
commit f064d41
Showing
2 changed files
with
29 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
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,27 @@ | ||
FROM manjarolinux/base:latest | ||
|
||
RUN pacman -Sy --noconfirm base-devel protobuf wxwidgets-gtk3 | ||
|
||
RUN useradd app | ||
RUN mkdir -p /home/app | ||
RUN chown app /home/app | ||
USER app | ||
WORKDIR /home/app | ||
|
||
COPY --chown=app:app arch arch | ||
COPY --chown=app:app build build | ||
COPY --chown=app:app dep dep | ||
COPY --chown=app:app doc doc | ||
COPY --chown=app:app extras extras | ||
COPY --chown=app:app lib lib | ||
COPY --chown=app:app scripts scripts | ||
COPY --chown=app:app src src | ||
COPY --chown=app:app tests tests | ||
COPY --chown=app:app tools tools | ||
COPY --chown=app:app Makefile . | ||
COPY --chown=app:app build.py . | ||
COPY --chown=app:app config.py . | ||
COPY --chown=app:app protocol.h . | ||
COPY --chown=app:app README.md . | ||
|
||
RUN make |