Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Docker
mailcatcher
Commits
f494cda1
Commit
f494cda1
authored
Sep 09, 2019
by
Joachim Eckerlin
Browse files
Add newer mailcatcher version
parent
5f885d71
Pipeline
#22936
passed with stage
in 1 minute and 25 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitignore
0 → 100644
View file @
f494cda1
/.idea
.gitlab-ci.yml
View file @
f494cda1
...
...
@@ -6,7 +6,7 @@ services:
stages
:
-
build
build
:
build
06
:
stage
:
build
only
:
refs
:
...
...
@@ -14,3 +14,10 @@ build:
script
:
-
/bin/sh build.sh 0.6.5
build07
:
stage
:
build
only
:
refs
:
-
master
script
:
-
/bin/sh build.sh 0.7 latest
0.7/Dockerfile
0 → 100644
View file @
f494cda1
FROM
alpine:3.7
ENV
VERSION 0.7.1
ENV
HTTP_PORT 1080
ENV
SMTP_PORT 1025
RUN
apk add
--update
ruby ruby-dev ruby-bigdecimal sqlite sqlite-dev build-base libstdc++ ca-certificates
&&
\
gem
install
json
--no-ri
--no-rdoc
&&
\
gem
install
mailcatcher
-v
$VERSION
--no-ri
--no-rdoc
&&
\
apk del
--purge
ruby-dev build-base
&&
\
rm
-rf
/var/cache/apk/
*
CMD
mailcatcher -f --ip=0.0.0.0 --smtp-port=$SMTP_PORT --http-port=$HTTP_PORT
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment