You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
296 B
8 lines
296 B
7 years ago
|
FROM ubuntu:17.10
|
||
|
USER root
|
||
|
RUN apt-get update && apt-get install -y rinetd curl libcurl3-gnutls
|
||
|
RUN echo "0.0.0.0 10271 10.100.0.1 10271" >> /etc/rinetd.conf
|
||
|
RUN echo "0.0.0.0 8923 10.100.0.1 8923" >> /etc/rinetd.conf
|
||
|
WORKDIR /usr/mm/etomic_build/seed
|
||
|
CMD /usr/sbin/rinetd && rm -rf DB && ./run
|