-
Notifications
You must be signed in to change notification settings - Fork 7
/
Dockerfile
28 lines (21 loc) · 909 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Builds a docker image for TP-Link´s EAP Controller
From phusion/baseimage:master
MAINTAINER Mace Capri <macecapri@gmail.com>
###############################################
## ENVIRONMENTAL CONFIG ##
###############################################
# Set correct environment variables
ENV DEBIAN_FRONTEND noninteractive
ENV HOME="/root" LC_ALL="C.UTF-8" LANG="en_US.UTF-8" LANGUAGE="en_US.UTF-8"
# Use baseimage-docker's init system
CMD ["/sbin/my_init"]
###############################################
## INTALL ENVIORMENT, INSTALL OPENVPN ##
###############################################
COPY install.sh /tmp/
RUN chmod +x /tmp/install.sh && sleep 1 && /tmp/install.sh && rm /tmp/install.sh
###############################################
## PORTS AND VOLUMES ##
###############################################
#expose 8088/tcp
VOLUME /config