forked from ringcentral/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2245e95
commit 75ba777
Showing
3 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.git | ||
Dockerfile | ||
.dockerignore | ||
|
||
*.gem | ||
*.rbc | ||
.bundle | ||
.config | ||
coverage | ||
InstalledFiles | ||
lib/bundler/man | ||
pkg | ||
rdoc | ||
spec/reports | ||
test/tmp | ||
test/version_tmp | ||
tmp | ||
*.DS_STORE | ||
build/ | ||
.cache | ||
.vagrant | ||
.sass-cache | ||
|
||
# YARD artifacts | ||
.yardoc | ||
_yardoc | ||
doc/ | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM ruby:2.3-alpine | ||
|
||
MAINTAINER Sharetribe Team <[email protected]> | ||
|
||
RUN apk add --update nodejs g++ make | ||
|
||
# Add user for running the app | ||
RUN adduser -D app | ||
|
||
COPY Gemfile Gemfile.lock /opt/app/ | ||
WORKDIR /opt/app | ||
USER app | ||
RUN bundle install | ||
|
||
COPY . /opt/app | ||
USER root | ||
RUN chown -R app:app /opt/app | ||
USER app | ||
|
||
EXPOSE 4567 | ||
|
||
CMD ["bundle", "exec", "middleman", "server", "--watcher-force-polling"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
app: | ||
build: . | ||
ports: | ||
- 4567:4567 | ||
volumes: | ||
- ./source:/opt/app/source |