mirror of
https://github.com/Arlind-dev/sulej.ch.git
synced 2025-12-01 01:25:14 +01:00
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>
12 lines
264 B
Docker
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;"] |