-
Notifications
You must be signed in to change notification settings - Fork 25
/
Dockerfile
31 lines (23 loc) · 934 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
29
30
31
FROM java:openjdk-8
ENV OSM_HOME /osm
ENV OSM_CONFIG_HOME /osm/config
ENV JAVA_OPTS "-server -Dgrails.env=prod -Dfile.encoding=UTF-8"
ENV DOCKERIZE_VERSION v0.11.0
# add osm-user
RUN groupadd -r osm && useradd -ms /bin/bash -r -g osm osm
# install dockerize
RUN wget -O - https://github.com/powerman/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-`uname -s`-`uname -m` | install /dev/stdin /bin/dockerize
# get osm-sources and build war-file
RUN mkdir -p $OSM_HOME $OSM_HOME/logs $OSM_CONFIG_HOME && \
chmod -R 775 $OSM_HOME $OSM_CONFIG_HOME && \
chown -R osm:100 $OSM_HOME $OSM_CONFIG_HOME
WORKDIR $OSM_HOME
ADD ./build/libs/OpenSpeedMonitor*.war $OSM_HOME/
# add osm config file
ADD docker/templates/osm-config.yml.j2 $OSM_CONFIG_HOME/OpenSpeedMonitor-config.yml.j2
# add entrypoint script
ADD docker/entrypoint.sh /entrypoint.sh
RUN chmod 775 /entrypoint.sh
USER osm
EXPOSE 8080
ENTRYPOINT /entrypoint.sh