-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update OpenSuse Dockerfile for OpenSuse Leap 15.5
- Loading branch information
1 parent
945a316
commit 9035b92
Showing
1 changed file
with
10 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,21 @@ | |
|
||
FROM opensuse/leap:15.5 | ||
|
||
RUN zypper --gpg-auto-import-keys refresh -f | ||
RUN zypper addrepo https://download.opensuse.org/repositories/home:Simmphonie:gcc:13/15.5/home:Simmphonie:gcc:13.repo | ||
RUN zypper addrepo https://download.opensuse.org/repositories/home:Simmphonie:python310:base/15.5/home:Simmphonie:python310:base.repo | ||
|
||
RUN zypper -n --no-gpg-checks refresh -f | ||
|
||
RUN zypper install -y sudo gcc-c++ make vim git subversion cmake rpm-build unzip curl wget | ||
RUN zypper install -y libcurl-devel libicu-devel sqlite3-devel zlib-devel | ||
RUN zypper install -y nodejs npm | ||
RUN zypper install -y nodejs | ||
RUN zypper install -y python310 | ||
RUN zypper install -y gcc13-c++ | ||
|
||
RUN npm install -g electron-packager | ||
RUN npm install -g [email protected] | ||
RUN npm install -g electron-installer-redhat | ||
RUN npm install -g pug-cli | ||
|
||
COPY docker/build_opensuseleap.sh /build.sh | ||
|
||
ENTRYPOINT ["/build.sh"] | ||
ENTRYPOINT ["/build.sh"] |