Skip to content

Commit

Permalink
fix(containers): Update containers to fix dependencies versions
Browse files Browse the repository at this point in the history
  • Loading branch information
hbi-wallix committed May 4, 2018
1 parent 1a15c0f commit b7a95f8
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 15 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
domain
scripts/python/config.py
server.crt
server.csr
server.key*
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@

HOSTNAME?=$(shell cat hostname)
DOMAIN_NAME=$(shell cat domain)
MONGO_DATA=/data/db
SOLR_DATA=/data/solr
PEPS_ETC=/etc/peps
MONGO_DATA ?= /data/db
SOLR_DATA ?= /data/solr
# On MacOS, use /private/etc/peps to keep configuration in /etc
PEPS_ETC ?= /etc/peps

# Public ports
HTTPS_PORT?=443
Expand Down
4 changes: 1 addition & 3 deletions mongod/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# MongoDB container

FROM phusion/baseimage:0.9.16

MAINTAINER MLstate <[email protected]>
FROM phusion/baseimage:0.10.1

# Add 10gen official apt source to the sources list.
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
Expand Down
4 changes: 1 addition & 3 deletions opa/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Generic Opa container

FROM phusion/baseimage:0.9.16

MAINTAINER MLstate <[email protected]>
FROM phusion/baseimage:0.10.1

# Install stuff we need
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 0 additions & 2 deletions peps/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
# Based on our generic opa container which has mlstatelibs and node built in.
FROM opa:latest

MAINTAINER MLstate <[email protected]>

# Download the peps executable
RUN curl -sf -o /tmp/peps.zip -L https://github.com/MLstate/PEPS/releases/download/0.9.9/peps.zip
RUN mkdir -p /peps && cd /peps && unzip -q /tmp/peps.zip
Expand Down
4 changes: 2 additions & 2 deletions smtpin/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:6.7
FROM node:6

# Install Haraka
RUN npm install -g Haraka@1.4.0
RUN npm install -g Haraka
RUN haraka -i /usr/local/haraka

# Copy package.json for plugin dependencies
Expand Down
4 changes: 2 additions & 2 deletions smtpout/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:6.7
FROM node:6

# Install Haraka
RUN npm install -g Haraka@1.4.0
RUN npm install -g Haraka
RUN haraka -i /usr/local/haraka

# Copy package.json for plugin dependencies
Expand Down

0 comments on commit b7a95f8

Please sign in to comment.