-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dockerfile for OpenSUSE Leap and Tumbleweed.
- Loading branch information
Showing
4 changed files
with
56 additions
and
2 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
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,20 @@ | ||
FROM opensuse/leap:latest | ||
|
||
ENV LANG=C.UTF-8 | ||
ENV LC_ALL=C.UTF-8 | ||
ENV LC_LANG=C.UTF-8 | ||
ENV ARCH=x64 | ||
ENV CPU=x86_64 | ||
ENV OS=linux | ||
# For libiconv | ||
ENV LD_LIBRARY_PATH=/usr/local/lib | ||
|
||
ARG CC=gcc | ||
ARG CXX=g++ | ||
|
||
COPY tools /opt/tools | ||
|
||
RUN zypper refresh | ||
RUN zypper -n install sudo wget git libopenssl-devel bison byacc automake cmake python3 \ | ||
libjson-c-devel clang gcc gcc-c++ make autoconf libtool gzip bzip2 libbz2-devel \ | ||
gettext-tools ncurses-devel zlib-devel asciidoc libbotan-devel llvm gtest |
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,20 @@ | ||
FROM opensuse/tumbleweed:latest | ||
|
||
ENV LANG=C.UTF-8 | ||
ENV LC_ALL=C.UTF-8 | ||
ENV LC_LANG=C.UTF-8 | ||
ENV ARCH=x64 | ||
ENV CPU=x86_64 | ||
ENV OS=linux | ||
# For libiconv | ||
ENV LD_LIBRARY_PATH=/usr/local/lib | ||
|
||
ARG CC=gcc | ||
ARG CXX=g++ | ||
|
||
COPY tools /opt/tools | ||
|
||
RUN zypper refresh | ||
RUN zypper -n install sudo wget git libopenssl-devel bison byacc automake cmake python3 \ | ||
libjson-c-devel clang gcc gcc-c++ make autoconf libtool gzip bzip2 libbz2-devel \ | ||
gettext-tools ncurses-devel zlib-devel asciidoc libbotan-devel llvm gtest |