Created
September 4, 2018 18:53
-
-
Save jdmichaud/4a3f6ded8bd9befc8a73a26ffb1d31a3 to your computer and use it in GitHub Desktop.
Dockerfile for sc-im build
This file contains hidden or 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
FROM ubuntu:bionic | |
RUN apt update | |
RUN apt install -y \ | |
bison \ | |
libncurses5-dev \ | |
libncursesw5-dev \ | |
libxml2-dev \ | |
libzip-dev \ | |
git | |
RUN cd && git clone https://github.com/jmcnamara/libxlsxwriter.git && \ | |
cd libxlsxwriter/ && \ | |
make && \ | |
make install && \ | |
ldconfig | |
RUN cd && git clone https://github.com/andmarti1424/sc-im.git && \ | |
cd sc-im/src && \ | |
make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment