aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 10886f147bb0b75216dcb1ec15c0f7c3a196ee9f (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
# Use an official Python runtime as a base image
FROM python:2.7

ENV INSROOT /opt/app
ENV APPUSER policy_handler
ENV APPDIR ${INSROOT}/${APPUSER}

RUN useradd -d ${APPDIR} ${APPUSER}

WORKDIR ${APPDIR}

# Make port 25577 available to the world outside this container
EXPOSE 25577

# Copy the current directory contents into the container at ${APPDIR}
COPY ./*.py ./
COPY ./*.in ./
COPY ./*.txt ./
COPY ./*.sh ./
COPY ./policyhandler/ ./policyhandler/
COPY ./etc/ ./etc/

RUN mkdir -p ${APPDIR}/logs \
 && mkdir -p ${APPDIR}/tmp \
 && mkdir -p ${APPDIR}/etc \
 && chown -R ${APPUSER}:${APPUSER} ${APPDIR} \
 && chmod a+w ${APPDIR}/logs \
 && chmod 700 ${APPDIR}/tmp \
 && chmod 500 ${APPDIR}/etc \
 && chmod 500 ${APPDIR}/run_policy.sh \
 && ls -la && ls -la ./policyhandler

# Install any needed packages specified in requirements.txt
RUN pip install -r requirements.txt

USER ${APPUSER}

VOLUME ${APPDIR}/logs

# Run run_policy.sh when the container launches
CMD ["./run_policy.sh"]