Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gdc-client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ FROM ubuntu:14.04

MAINTAINER "John Vivian"

LABEL version="1.2.0" \
mode="gdc-client-1.2.0" \
LABEL version="1.4.0" \
mode="gdc-client-1.4.0" \
description="docker image to run NCI gdc-client"

# Install GDC-Client
RUN apt-get update
RUN apt-get install -y wget zip unzip
RUN cd /opt && wget https://gdc.cancer.gov/files/public/file/gdc-client_v1.2.0_Ubuntu14.04_x64.zip && unzip gdc-client_v1.2.0_Ubuntu14.04_x64.zip
RUN cd /opt && wget https://gdc.cancer.gov/system/files/authenticated%20user/0/gdc-client_v1.4.0_Ubuntu_x64.zip && unzip gdc-client_v1.4.0_Ubuntu_x64.zip
RUN cp /opt/gdc-client /usr/local/bin/

# Data dir
Expand Down