Skip to content

Commit

Permalink
Dockerfile for LAppS runtime is prepared. See the changes in dockerfi…
Browse files Browse the repository at this point in the history
…les/Dockerfile.lapps-runenv.0.6.1
  • Loading branch information
Pavel Kraynyukhov committed May 8, 2018
1 parent c973a2f commit 1ecebfd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 12 deletions.
12 changes: 0 additions & 12 deletions dockerfiles/Dockerfile.lapps-runenv

This file was deleted.

22 changes: 22 additions & 0 deletions dockerfiles/Dockerfile.lapps-runenv.0.6.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM ubuntu:xenial

LABEL "co.new-web" "new WEB() LLP" version 1.0 maintainer "pk@new-web.co" description "LAppS run environment"

RUN apt-get update \
&& apt-get dist-upgrade -y

RUN apt-get install -y apt-utils

RUN apt-get install -y libcrypto++9v5

RUN apt-get install -y luarocks

ENV WORKSPACE /tmp

ADD https://github.com/ITpC/LAppS/blob/master/packages/lapps-0.6.1-amd64.deb ${WORKSPACE}

RUN dpkg -i /tmp/lapps-0.6.1-amd.deb

RUN echo "LAppS-0.6.1 is installed under /opt/lapps prefix. To run LAppS use /opt/lapps/bin/lapps [-d] command. -d is an optional argument do run LAppS as a deamon."

RUN echo "You may add/install libraries you want to use with LAppS from luarocks repository. You may twick this Dockerfile or do these operations within running container."

0 comments on commit 1ecebfd

Please # to comment.