Skip to content

Commit

Permalink
make a 1.3.2 docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
gijzelaerr committed Dec 15, 2015
1 parent 11eb946 commit bedbe38
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM radioastro/base:0.1
FROM radioastro/base:0.2

MAINTAINER [email protected]

Expand All @@ -12,13 +12,14 @@ RUN apt-get update && \
python-qt4 \
python-qwt5-qt4 \
python-setuptools \
python-pip \
libicu52 \
lofar \
&& \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

ADD . /tmp/tigger

RUN cd /tmp/tigger && python setup.py install
RUN cd /tmp/tigger && pip install .

ENTRYPOINT /usr/local/bin/tigger
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
DOCKER_REPO=radioastro/tigger:1.3.3

.PHONY: build clean

all: build

build:
docker build -t ${DOCKER_REPO} .

clean:
docker rmi ${DOCKER_REPO}

upload: build
docker push ${DOCKER_REPO}

0 comments on commit bedbe38

Please sign in to comment.