mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-10 03:19:32 +00:00
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN13-LIBXSLT-10691002 - https://snyk.io/vuln/SNYK-DEBIAN13-GNUTLS28-5681083 - https://snyk.io/vuln/SNYK-DEBIAN13-LIBHEIF-14723781 - https://snyk.io/vuln/SNYK-DEBIAN13-LIBHEIF-14723781 - https://snyk.io/vuln/SNYK-DEBIAN13-LIBHEIF-14723781
12 lines
338 B
Docker
12 lines
338 B
Docker
FROM nginx:1.29.4-trixie
|
|
|
|
COPY public /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf.template
|
|
COPY docker-entrypoint.sh /docker-entrypoint.d/05-docker-entrypoint.sh
|
|
|
|
RUN chmod +x /docker-entrypoint.d/05-docker-entrypoint.sh
|
|
|
|
EXPOSE 5000
|
|
|
|
LABEL org.opencontainers.image.source https://github.com/kevinmidboe/seasoned
|