Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gijzelaerr committed Dec 17, 2015
1 parent 7a4d6c9 commit 28512bd
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM radioastro/base:0.2

MAINTAINER [email protected]

RUN apt-get update && \
apt-get install -y \
lofar=2.12.1-1trusty \
&& \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
DOCKER_REPO=radioastro/lofar:2.12.1

.PHONY: build clean

all: run

build:
docker build -t ${DOCKER_REPO} .

run: build
docker run -ti ${DOCKER_REPO}

clean:
docker rmi ${DOCKER_REPO}
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
LOFAR Docker files
==================


https://hub.docker.com/r/radioastro/lofar/


0 comments on commit 28512bd

Please sign in to comment.