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
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM ubuntu:16.04

RUN apt-get update -y
RUN apt-get install python-pip -y
RUN apt-get install git -y

RUN mkdir /opt/dmc
WORKDIR /opt/dmc

RUN git clone https://github.com/NetApp-StorageGRID/storagegrid-dmc.git
WORKDIR /opt/dmc/storagegrid-dmc
RUN apt-get install build-essential libgmp3-dev python-dev -y
WORKDIR /opt/dmc/storagegrid-dmc/installer_scripts
RUN pip install -r requirement.txt

EXPOSE 8080

WORKDIR /opt/dmc/storagegrid-dmc
CMD python ./run.py