-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
44 lines (29 loc) · 912 Bytes
/
Dockerfile
File metadata and controls
44 lines (29 loc) · 912 Bytes
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
# FROM nextcloud:32.0.6
# ARG VERSION=32.0.6
# # Update package lists
# RUN apt-get update
# # Install ffmpeg
# RUN apt-get install -y ffmpeg
# # Install nano
# RUN apt-get install -y nano
# #Install Node & NPM
# RUN apt-get install -y nodejs npm
# # list directories
# RUN ls -lh
FROM nextcloud:32.0.6
ARG VERSION=32.0.6
# Update package lists
RUN apt-get update
# Install ffmpeg
RUN apt-get install -y ffmpeg
# Install nano
RUN apt-get install -y nano
# Install Node & NPM
RUN apt-get install -y nodejs npm
# Install Java (needed by libresign)
RUN apt-get install -y default-jre-headless
# Copy the occ hook script — runs on first container start after Nextcloud is ready
COPY init-libresign.sh /docker-entrypoint-hooks.d/post-installation/init-libresign.sh
RUN chmod +x /docker-entrypoint-hooks.d/post-installation/init-libresign.sh
# List directories (optional debug step)
RUN ls -lh