-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from ska-sa/issue-1
Issue 1
- Loading branch information
Showing
3 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,8 @@ FROM kernsuite/base:2 | |
|
||
MAINTAINER [email protected] | ||
|
||
RUN docker-apt-install \ | ||
python-qt4 \ | ||
python-qwt5-qt4 | ||
ADD . /tmp/tigger-lsm | ||
|
||
ADD . /tmp/tigger | ||
RUN pip install /tmp/tigger-lsm | ||
|
||
RUN pip install /tmp/tigger | ||
|
||
CMD /usr/local/bin/tigger | ||
CMD /usr/local/bin/tigger-convert |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,10 +28,10 @@ | |
extras_require=extras_require, | ||
scripts=scripts, | ||
package_data=package_data, | ||
description="yet another FITS image viewer", | ||
description="Python libraries and command-line tools for manipulating Tigger-format LSMs", | ||
author="Oleg Smirnov", | ||
author_email="[email protected]", | ||
url="https://github.com/ska-sa/tigger", | ||
url="https://github.com/ska-sa/tigger-lsm", | ||
install_requires=requirements, | ||
) | ||
|