Skip to content

Commit 6e44736

Browse files
committed
Add a Dockerfile to bootstrap a Ruby on Rails project
[refs #d44370821738]
1 parent ada7a59 commit 6e44736

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

developing/bootstrapping/Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM ruby:2.4.3-alpine
2+
3+
RUN apk add --no-cache build-base \
4+
&& gem install rails
5+
6+
WORKDIR /app
7+
8+
ENTRYPOINT ["/usr/local/bundle/bin/rails"]

0 commit comments

Comments
 (0)