Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
khazelton authored Apr 4, 2019
1 parent 99ad4b8 commit 1e5d002
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Sources/SIS/attribute-slammer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM perl:latest

MAINTAINER "TIER API & EntReg Working Group <tier-api@internet2.edu>"

# ENV PERL5LIB /usr/local/lib/perl5/site_perl/5.26.0/

RUN set -x; \
apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y netcat vim \
&& apt-get clean

RUN set -x; \
cpanm App::cpanminus \
&& cpanm REST::Client \
&& cpanm JSON \
&& cpanm YAML \
&& cpanm Getopt::Long \
&& cpanm MIME::Base64


COPY attributeSlammer /opt/attributeSlammer
WORKDIR /opt/attributeSlammer
CMD [ "./attribute_slam.sh" ]

0 comments on commit 1e5d002

Please sign in to comment.