Files
sulej.ch/Dockerfile
dependabot[bot] 8ad7a8da2e chore(deps): bump nginx from 1.29.2-alpine3.22 to 1.29.3-alpine3.22 (#39)
Bumps nginx from 1.29.2-alpine3.22 to 1.29.3-alpine3.22.

---
updated-dependencies:
- dependency-name: nginx
  dependency-version: 1.29.3-alpine3.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-31 09:01:36 +01:00

12 lines
264 B
Docker

ARG BUILD_IMAGE=ghcr.io/arlind-dev/sulej.ch:build-latest
FROM --platform=$BUILDPLATFORM ${BUILD_IMAGE} AS build
FROM nginx:1.29.3-alpine3.22
ARG BUILD_IMAGE
WORKDIR /usr/share/nginx/html
COPY --from=build /output ./
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]