-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDockerfile.rocky9
73 lines (60 loc) · 2.04 KB
/
Dockerfile.rocky9
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
69
70
71
72
73
# Build AYON dependencies docker image
FROM rockylinux:9 AS builder
ARG PYTHON_VERSION=3.9.13
ARG BUILD_DATE
ARG VERSION
LABEL description="Docker Image to create dependency package for RockyLinux 9 installer"
LABEL org.opencontainers.image.name="ynput/ayon-dependencies-rocky9"
LABEL org.opencontainers.image.title="AYON Dependency Package Docker Image"
LABEL org.opencontainers.image.url="https://ayon.ynput.io/"
LABEL org.opencontainers.image.source="https://github.com/ynput/ayon-dependencies-tool"
LABEL org.opencontainers.image.documentation="https://ayon.ynput.io"
LABEL org.opencontainers.image.created=$BUILD_DATE
LABEL org.opencontainers.image.version=$VERSION
USER root
# update base
RUN dnf install -y dnf-plugins-core \
&& dnf -y update \
&& dnf clean all
# add tools we need
RUN dnf -y install \
bash \
which \
git \
make \
cmake \
wget \
gcc \
zlib-devel \
bzip2 \
bzip2-devel \
readline-devel \
sqlite sqlite-devel \
openssl-devel \
openssl-libs \
tk-devel libffi-devel \
automake \
autoconf \
patch \
ncurses \
ncurses-devel \
xcb-util-wm \
xcb-util-renderutil \
&& dnf clean all
RUN mkdir /opt/ayon-dependencies-tool
RUN curl https://pyenv.run | bash
# ENV PYTHON_CONFIGURE_OPTS --enable-shared
RUN echo 'export PATH="$HOME/.pyenv/bin:$PATH"'>> $HOME/.bashrc \
&& echo 'eval "$(pyenv init -)"' >> $HOME/.bashrc \
&& echo 'eval "$(pyenv virtualenv-init -)"' >> $HOME/.bashrc \
&& echo 'eval "$(pyenv init --path)"' >> $HOME/.bashrc
RUN source $HOME/.bashrc && pyenv install ${PYTHON_VERSION}
COPY . /opt/ayon-dependencies-tool/
RUN rm -rf /opt/ayon-dependencies-tool/.poetry || echo "No Poetry installed yet."
RUN chmod +x /opt/ayon-dependencies-tool/start.sh
WORKDIR /opt/ayon-dependencies-tool
RUN source $HOME/.bashrc \
&& pyenv local ${PYTHON_VERSION}
RUN source $HOME/.bashrc \
&& ./start.sh install
CMD [/opt/ayon-dependencies-tool/start.sh, listen]