-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
21 lines (14 loc) · 732 Bytes
/
Dockerfile
File metadata and controls
21 lines (14 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Dockerfile for Repose (www.openrepose.org)
FROM ubuntu
MAINTAINER Damien Johnson ([email protected])
RUN apt-get install -y wget
RUN wget -O - http://repo.openrepose.org/debian/pubkey.gpg | apt-key add - && echo "deb http://repo.openrepose.org/debian stable main" > /etc/apt/sources.list.d/openrepose.list
RUN apt-get update && apt-get install -y repose-valve repose-filter-bundle repose-extensions-filter-bundle
# Remove default Repose configuration files
RUN rm /etc/repose/*.cfg.xml
# Copy our configuration files in.
ADD ./repose_configs/*.cfg.xml /etc/repose/
# Expose Port 8080 -- Change this to use other ports for Repose
EXPOSE 8080
# Start Repose
CMD java -jar /usr/share/repose/repose-valve.jar