This repository was archived by the owner on Feb 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
82 lines (57 loc) · 1.34 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
FROM debian:10
# Choose init system
ARG POJDE_OPENRC='false'
ENV POJDE_OPENRC ${POJDE_OPENRC}
# Disable interactive prompts
ENV DEBIAN_FRONTEND noninteractive
# Setup environment
RUN mkdir -p /opt/pojde
WORKDIR /opt/pojde
# Add versions
COPY versions.sh .
# Create build scripts directory
RUN mkdir -p /opt/pojde/build
WORKDIR /opt/pojde/build
# Run build scripts
COPY build/repositories.sh .
RUN ./repositories.sh
COPY build/init.sh .
RUN ./init.sh
COPY build/packages.sh .
RUN ./packages.sh
COPY build/cockpit.sh .
RUN ./cockpit.sh
COPY build/code-server.sh .
RUN ./code-server.sh
COPY build/ttyd.sh .
RUN ./ttyd.sh
COPY build/novnc.sh .
RUN ./novnc.sh
COPY build/jupyter-lab.sh .
RUN ./jupyter-lab.sh
COPY build/ssh.sh .
RUN ./ssh.sh
COPY build/nginx.sh .
RUN ./nginx.sh
COPY build/docker.sh .
RUN ./docker.sh
COPY build/webwormhole.sh .
RUN ./webwormhole.sh
COPY build/clean.sh .
RUN ./clean.sh
# Add `pojdectl`
COPY bin/* /usr/bin/
# Clean up
RUN rm -rf /opt/pojde/build
# Create preferences & CA directories
RUN mkdir -p /opt/pojde/preferences
RUN mkdir -p /opt/pojde/ca
# Add configuration scripts
RUN mkdir -p /opt/pojde/configuration
COPY configuration/* /opt/pojde/configuration/
# Add module scripts
RUN mkdir -p /opt/pojde/modules
COPY modules/* /opt/pojde/modules/
# Go back to home dir
WORKDIR /root
CMD ["/lib/systemd/systemd"]