Skip to content

Commit

Permalink
Merge pull request #75 from grahm/master
Browse files Browse the repository at this point in the history
Update Dockerfiles to use node 0.10* friendly versions of NPM modules.
  • Loading branch information
hbi-wallix authored May 3, 2018
2 parents 4e838da + 8bf3ecb commit 1a15c0f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions peps/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ RUN /usr/bin/npm install -g \
ursa \
simplesmtp \
rai \
nodemailer \
nodemailer@2.7.2 \
ldapjs \
iconv \
nodemailer-smtp-transport \
mailparser \
nodemailer-smtp-transport@2.7.2 \
mailparser@0.6.2 \
html-to-text \
[email protected] \
intl-messageformat intl
intl-messageformat intl@0.1.4

# We need to add the webmail modules to the node path
ENV NODE_PATH $NODE_PATH:/peps/_build
Expand Down
2 changes: 1 addition & 1 deletion smtpin/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:6.7

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

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

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

# Copy package.json for plugin dependencies
Expand Down

0 comments on commit 1a15c0f

Please sign in to comment.