blob: ffc10588723e3f6b1224dcc2acdb1da98b8d31a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
FROM camilstaps/clean:itasks
RUN apt-get update -qq && apt-get install -qq libreadline-dev
RUN touch /home/.iclean_history
RUN mkdir -p /usr/src/iclean
COPY . /usr/src/iclean
WORKDIR /usr/src/iclean
RUN make -B
ENTRYPOINT "./iclean"
CMD []
|