Skip to content

Instantly share code, notes, and snippets.

@jdmichaud
Created September 4, 2018 18:53
Show Gist options
  • Save jdmichaud/4a3f6ded8bd9befc8a73a26ffb1d31a3 to your computer and use it in GitHub Desktop.
Save jdmichaud/4a3f6ded8bd9befc8a73a26ffb1d31a3 to your computer and use it in GitHub Desktop.
Dockerfile for sc-im build
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