-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDockerfile
45 lines (31 loc) · 1.35 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
FROM ubuntu:22.04
LABEL maintainer "Andreas Fertig"
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl wget gnupg unzip python3 python3-pip python3-setuptools libsqlite3-dev apt-transport-https \
ca-certificates \
curl \
sqlite3 \
software-properties-common && apt-get update
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
RUN add-apt-repository \
"deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
RUN apt-get update && apt-get install -y --no-install-recommends docker-ce
RUN useradd insights \
&& mkdir /home/insights \
&& chown -R insights:insights /home/insights
COPY latest.zip /tmp
RUN cd /tmp && \
unzip latest.zip && \
mv cppinsights-web-latest /home/insights/cppinsights-web && \
rm -rf /tmp/* && \
chown -R insights:insights /home/insights
RUN grep -v pysqlite3-binary /home/insights/cppinsights-web/requirements.txt > /home/insights/cppinsights-web/requirements2.txt && \
mv /home/insights/cppinsights-web/requirements2.txt /home/insights/cppinsights-web/requirements.txt && \
pip3 install -r /home/insights/cppinsights-web/requirements.txt
EXPOSE 5000
#VOLUME /var/run/docker.sock
COPY run_in_docker.sh /
RUN chmod 0755 /run_in_docker.sh
#USER insights
CMD ["/run_in_docker.sh"]