File tree Expand file tree Collapse file tree 3 files changed +13
-9
lines changed
Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -189,12 +189,16 @@ jobs:
189189 - name : " Hadolint nipapd"
190190 uses : hadolint/hadolint-action@v3.1.0
191191 with :
192- Dockerfile : Dockerfile.nipapd
192+ dockerfile : Dockerfile.nipapd
193+ failure-threshold : warning
194+ override-info : DL3013
193195
194196 - name : " Hadolint WWW"
195197 uses : hadolint/hadolint-action@v3.1.0
196198 with :
197- Dockerfile : Dockerfile.www
199+ dockerfile : Dockerfile.www
200+ failure-threshold : warning
201+ override-info : DL3013
198202
199203 - name : " nipapd metadata"
200204 id : nipapd_meta
Original file line number Diff line number Diff line change 3333#
3434
3535FROM ubuntu:noble
36- MAINTAINER Kristian Larsson <kristian@spritelink.net>
36+
37+ LABEL org.opencontainers.image.authors="Kristian Larsson <kristian@spritelink.net>, Lukas Garberg <lukas@spritelink.net>"
3738
3839ENV DEBIAN_FRONTEND=noninteractive
3940
Original file line number Diff line number Diff line change 2525
2626FROM ubuntu:noble
2727
28- MAINTAINER Lukas Garberg <lukas@spritelink.net>
28+ LABEL org.opencontainers.image.authors="Kristian Larsson <kristian@spritelink.net>, Lukas Garberg <lukas@spritelink.net>"
2929
3030ENV DEBIAN_FRONTEND=noninteractive
3131
@@ -63,11 +63,10 @@ ENV REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
6363COPY pynipap /pynipap
6464COPY nipap /nipap
6565COPY nipap-www /nipap-www
66- RUN cd /pynipap && pip3 --no-input install --break-system-packages --no-cache-dir . && \
67- cd /nipap && pip3 --no-input install --break-system-packages --no-cache-dir . && \
68- cd /nipap-www && pip3 --no-input install --break-system-packages --no-cache-dir . && \
69- mkdir -p /etc/nipap/www/ && cp nipap-www.wsgi /etc/nipap/www/ && \
70- cd ..
66+ RUN pip3 --no-input install --break-system-packages --no-cache-dir ./pynipap/ && \
67+ pip3 --no-input install --break-system-packages --no-cache-dir ./nipap/ && \
68+ pip3 --no-input install --break-system-packages --no-cache-dir ./nipap-www/ && \
69+ mkdir -p /etc/nipap/www/ && cp ./nipap-www/nipap-www.wsgi /etc/nipap/www/
7170
7271EXPOSE 80
7372VOLUME [ "/var/log/apache2" ]
You can’t perform that action at this time.
0 commit comments