Commit 43fd914 1 parent db18d69 commit 43fd914 Copy full SHA for 43fd914
File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 2
2
FROM docker.io/debian:bullseye as builder
3
3
4
4
# Install git
5
- RUN apt-get update
6
- RUN apt-get install -y git
5
+ RUN apt-get update && \
6
+ apt-get install -y git && \
7
+ rm -rf /var/lib/apt/lists/*
7
8
8
9
# the last used version from Lumi
9
10
ENV LAST_USED_H5P_LIBRARY=661d4f6c7d7b1117587654941f5fcf91acb5f4eb
@@ -20,7 +21,7 @@ RUN rm h5p-php-library/*.php
20
21
RUN rm h5p-editor-php-library/*.php
21
22
22
23
# Use nginx as server for run stage
23
- FROM docker.io/nginx:1.25
24
+ FROM docker.io/nginx:1.27
24
25
25
26
# Copy configuration
26
27
COPY nginx.conf /etc/nginx/nginx.conf
@@ -39,4 +40,4 @@ RUN touch /var/run/nginx.pid && \
39
40
USER nginx
40
41
41
42
EXPOSE 8080
42
- CMD ["nginx" , "-g" , "daemon off;" ]
43
+ CMD ["nginx" , "-g" , "daemon off;" ]
You can’t perform that action at this time.
0 commit comments