mirror of
https://github.com/Arlind-dev/sulej.ch.git
synced 2025-12-01 09:35:13 +01:00
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.2-alpine3.22
|
|
|
|
ARG BUILD_IMAGE
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
COPY --from=build /output ./
|
|
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"] |