Analizo

 view release on metacpan or  search on metacpan

Dockerfile  view on Meta::CPAN

WORKDIR /home/analizo

# Copy the current directory contents into the container at /home/analizo
ADD . /home/analizo

# Install any needed packages running development-setup.sh script
RUN apt-get -y update && apt-get -y install sudo apt-utils && apt-get -y clean
RUN ./development-setup.sh

# Define analizo user as owner of all files under /home/analizo
RUN chown -R analizo:analizo /home/analizo

# Switch from root user to analizo user
USER analizo:analizo

# Add analizo bin to $PATH
ENV PATH $PATH:/home/analizo/bin

# By default show the analizo version
CMD ./bin/analizo --version



( run in 0.488 second using v1.01-cache-2.11-cpan-71847e10f99 )