generated from odtp-org/odtp-component-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
68 lines (52 loc) · 1.85 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
FROM ubuntu:22.04
##################################################
# Ubuntu setup
##################################################
# Ubuntu setup
RUN apt update && apt install -y \
python3.10 \
python3-pip \
wget \
unzip \
nano \
git \
g++ \
gcc \
htop \
zip \
ca-certificates && \
rm -rf /var/lib/apt/lists/*
##################################################
# ODTP setup
##################################################
COPY odtp-component-client/requirements.txt /tmp/odtp.requirements.txt
RUN pip install -r /tmp/odtp.requirements.txt
#######################################################################
# PLEASE INSTALL HERE ALL SYSTEM DEPENDENCIES RELATED TO YOUR TOOL
#######################################################################
# Installing dependecies from the app
COPY requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
######################################################################
# ODTP COMPONENT CONFIGURATION.
# DO NOT TOUCH UNLESS YOU KNOW WHAT YOU ARE DOING.
######################################################################
##################################################
# ODTP Preparation
##################################################
RUN mkdir /odtp \
/odtp/odtp-config \
/odtp/odtp-app \
/odtp/odtp-component-client \
/odtp/odtp-logs \
/odtp/odtp-input \
/odtp/odtp-workdir \
/odtp/odtp-output
# This copy all the information for running the ODTP component
COPY odtp.yml /odtp/odtp-config/odtp.yml
COPY ./odtp-component-client /odtp/odtp-component-client
COPY ./app /odtp/odtp-app
WORKDIR /odtp
# Fix for end of the line issue on Windows. Avoid error when building on windows
RUN find /odtp -type f -iname "*.sh" -exec sed -i 's/\r$//' {} \;
ENTRYPOINT ["bash", "/odtp/odtp-component-client/startup.sh"]