blob: e4806c3d593192704efa3a6981179a075ec033c4 (
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
|
# Use an official Python runtime as a base image
FROM python:3.6
ENV INSROOT /opt/app
ENV APPUSER snmptrap
ENV APPDIR ${INSROOT}/${APPUSER}
RUN useradd -d ${APPDIR} ${APPUSER}
WORKDIR ${APPDIR}
EXPOSE 162
# Copy the current directory contents into the container at ${APPDIR}
COPY ./src/ ./bin/
COPY ./etc/ ./etc/
RUN mkdir -p ${APPDIR}/logs \
&& chown -R ${APPUSER}:${APPUSER} ${APPDIR} \
&& chmod a+w ${APPDIR}/logs \
&& chmod 500 ${APPDIR}/etc \
&& chmod 500 ${APPDIR}/bin/dcae_snmptrapd.sh
USER ${APPUSER}
VOLUME ${APPDIR}/logs
# Run run_policy.sh when the container launches
CMD ["./bin/dcae_snmptrapd.sh"]
|