Skip to content

Commit

Permalink
chore: add docs make target
Browse files Browse the repository at this point in the history
  • Loading branch information
kvikshaug committed May 15, 2017
1 parent e998f6a commit 9797dc5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM python:3-alpine
RUN mkdir -p /app
WORKDIR /app
ENV PYTHONUNBUFFERED 1
RUN apk --update add make && rm -rf /var/cache/apk/*
COPY setup.py /app/
COPY turbasen /app/turbasen/
RUN pip install -e .[dev]
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ test:
build:
docker-compose build dev

.PHONY: docs
docs:
docker-compose run --rm dev ash -c "cd docs && make html"

.PHONY: publish
publish:
python setup.py sdist bdist_egg upload --sign
Expand Down

0 comments on commit 9797dc5

Please sign in to comment.