cWikiBot/Dockerfile

13 lines
218 B
Docker
Raw Normal View History

2020-12-26 16:50:29 +01:00
FROM debian:stable
MAINTAINER Linuro <cpp@zom.bi>
2020-12-26 20:41:50 +01:00
RUN apt-get update && apt-get install build-essential gcc libjson-c-dev libcurl4-openssl-dev --yes
2020-12-26 16:50:29 +01:00
ADD . /code
WORKDIR /code
RUN ./build.sh
2020-12-26 20:41:50 +01:00
CMD ["/code/cWikiBot"]