Skip to content

Commit

Permalink
add docker-compose for development (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
patsplat authored Dec 29, 2019
1 parent 96758e8 commit f97cf75
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM ruby:2.5.3-alpine3.8
RUN apk update && apk add git

WORKDIR /app
COPY . .
CMD sh
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: '3'
services:
dev:
build: .
volumes:
- .:/app

0 comments on commit f97cf75

Please sign in to comment.