Skip to content

Instantly share code, notes, and snippets.

@HysMagus
Created November 27, 2019 00:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HysMagus/2c66a64a38616f773e743f0aae16e519 to your computer and use it in GitHub Desktop.
Save HysMagus/2c66a64a38616f773e743f0aae16e519 to your computer and use it in GitHub Desktop.
FROM ubuntu:18.04
ENV SRC_IMG=ubuntu:18.04
#INSTALL COMMON ESSENTIAL
RUN apt-get update && \
apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils curl wget nsis libevent-dev python-setuptools patch zip -y --fix-missing
#INSTALL POA MINER DEPENDENCIES
RUN apt-get install libcurl4-openssl-dev libjansson-dev -y --fix-missing
#CLEANUP UNUSED PACKAGES
RUN apt-get autoremove -y
CMD /bin/bash -c "trap: TERM INT; sleep infinity & wait"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment