-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathDockerfile
More file actions
23 lines (19 loc) · 793 Bytes
/
Dockerfile
File metadata and controls
23 lines (19 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Basic install of esniper
#
# Currently installs esniper 2-35-0
# Branch: legacy
# Version 1.2 May-03-2021
FROM centos:latest
MAINTAINER Felix G. version: 0.2
RUN yum update -y && \
yum install -y gcc libcurl-devel gcc-c++ make && \
yum install -y httpd-devel php-devel git && \
cd /tmp; git clone https://git.code.sf.net/p/esniper/git esniper-git -b legacy && \
curl http://springdale.princeton.edu/data/springdale/7/x86_64/os/Computational/automake115-1.15-9.sdl7.noarch.rpm -o /tmp/automake115-1.15-9.sdl7.noarch.rpm && \
yum localinstall -y /tmp/automake115-1.15-9.sdl7.noarch.rpm && \
cd /tmp/esniper-git && \
./configure; make; make install && \
mkdir -p /esniper/logs
ADD .esniper /
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT "./entrypoint.sh"