mirror of
https://github.com/rasilon/ujetl.git
synced 2026-04-11 10:29:29 +00:00
Add build docker
This commit is contained in:
parent
088f77bc42
commit
2e3bdc7004
3 changed files with 39 additions and 0 deletions
18
docker/run/Dockerfile
Normal file
18
docker/run/Dockerfile
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# General build RPM environment for CentOS 6.x
|
||||
#
|
||||
# VERSION 0.0.1
|
||||
|
||||
FROM centos:centos7
|
||||
MAINTAINER Derry Hamilton <derryh@rasilon.net>
|
||||
|
||||
# Install up-to-date epel rpm repository
|
||||
RUN yum -y install epel-release
|
||||
|
||||
# Install java first, to get a sensible one.
|
||||
RUN yum -y install java-1.8.0-openjdk-devel
|
||||
|
||||
COPY uJETL-2.*.x86_64.rpm /tmp/
|
||||
COPY ujetl_entrypoint /
|
||||
RUN rpm -i /tmp/uJETL-2.*.x86_64.rpm
|
||||
ENTRYPOINT ["/ujetl_entrypoint"]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue