config initial

This commit is contained in:
2020-01-25 11:53:33 -05:00
commit edbc602232
5 changed files with 133 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
# docker build -t theia-vpn .
FROM theiaide/theia:next
USER root
RUN apk add openconnect shadow --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted
COPY docker-entrypoint.sh /docker-entrypoint.sh
HEALTHCHECK --interval=10s --timeout=10s --start-period=10s \
CMD /sbin/ifconfig tun0
ENTRYPOINT ["/docker-entrypoint.sh"]