-
Notifications
You must be signed in to change notification settings - Fork 61
/
Dockerfile
52 lines (42 loc) · 1009 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
FROM alpine:3.6
MAINTAINER Ben Faul, https://github.com/benmfaul
RUN apk --update add openjdk8-jre
RUN apk add --no-cache bash
RUN apk --update add curl
RUN mkdir shell
RUN mkdir www
RUN mkdir www/js
RUN mkdir www/css
RUN mkdir www/SSI
RUN mkdir www/jsoneditor
RUN mkdir www/images
RUN mkdir www/assets
RUN mkdir web
RUN mkdir js
RUN mkdir target
RUN mkdir data
RUN mkdir logs
RUN mkdir SampleBids
RUN mkdir Campaigns
COPY stub.json /stub.json
COPY target/*with-dependencies.jar /target
COPY wait-for-it.sh /
COPY tools/* /
COPY data/ /data
COPY shell/ /shell
COPY www/* /www/
COPY www/assets/ /www/assets
COPY www/js/* /www/js/
COPY www/css/* /www/css/
COPY www/SSI /www/SSI/
COPY www/jsoneditor/ /www/jsoneditor
COPY www/images/320* /www/images/
COPY www/images/alien* www/images/
COPY web/* /web/
COPY log4j.properties /
COPY SampleBids /SampleBids
COPY database-sample.json /database.json
COPY Campaigns/payday-prod.json Campaigns/payday.json
COPY sendbid /
EXPOSE 8080 7379 7000
CMD ./rtb4free