-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dockerfile for LAppS runtime is prepared. See the changes in dockerfi…
…les/Dockerfile.lapps-runenv.0.6.1
- Loading branch information
Pavel Kraynyukhov
committed
May 8, 2018
1 parent
c973a2f
commit 1ecebfd
Showing
2 changed files
with
22 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." |