-
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.
- Loading branch information
1 parent
c7273c0
commit 8ff0153
Showing
2 changed files
with
33 additions
and
0 deletions.
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,32 @@ | ||
FROM fedora:40 | ||
|
||
RUN dnf update -y | ||
RUN dnf -y install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-40.noarch.rpm | ||
RUN dnf -y install https://github.com/rpmsphere/noarch/raw/master/r/rpmsphere-release-40-1.noarch.rpm | ||
RUN dnf -y install \ | ||
protobuf-compiler protobuf-devel sqlite-devel libudev-devel \ | ||
wxGTK-devel gcc gcc-c++ fmt-devel png2ico | ||
|
||
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 |