mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-11-21 04:50:31 -08:00
11 lines
196 B
Docker
11 lines
196 B
Docker
# vim: ft=dockerfile
|
|
|
|
FROM ubuntu:20.04
|
|
|
|
RUN apt-get update -qq && apt-get install python2.7 -y
|
|
|
|
COPY apkg-tools.py /apkg-tools.py
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|