-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'c-compat' into develop
- Loading branch information
Showing
40 changed files
with
578 additions
and
1,466 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,16 @@ | ||
FROM debian:jessie | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y curl \ | ||
&& curl -s https://packagecloud.io/install/repositories/rolandoislas/drc-sim/script.deb.sh | bash | ||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
wpasupplicant-drc \ | ||
python3 \ | ||
python3-dev \ | ||
python3-pip \ | ||
libffi-dev \ | ||
zlib1g-dev \ | ||
libjpeg-dev \ | ||
net-tools \ | ||
wireless-tools \ | ||
sysvinit-utils \ | ||
psmisc \ | ||
libavcodec-dev \ | ||
libswscale-dev \ | ||
rfkill \ | ||
isc-dhcp-client \ | ||
ifmetric | ||
|
||
ADD drc*.py /root/ | ||
ADD setup.py /root/ | ||
ADD src/ /root/src/ | ||
ADD resources/ /root/resources/ | ||
ADD MANIFEST.in /root/ | ||
RUN cd /root/ && python3 setup.py install | ||
ADD install.sh /root/ | ||
|
||
RUN apt-get update \ | ||
&& cd /root/ \ | ||
&& ./install.sh local | ||
|
||
ENV TERM xterm | ||
ENTRYPOINT ["drc-sim-backend.py", "--cli"] | ||
ENTRYPOINT ["drc-sim-backend", "--cli"] | ||
CMD ["-h"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.