mirror of
https://github.com/Arlind-dev/sulej.ch.git
synced 2025-12-01 09:35:13 +01:00
11 lines
181 B
Docker
11 lines
181 B
Docker
FROM ghcr.io/arlind-dev/sulej.ch:build-latest AS build
|
|
|
|
FROM nginx:alpine
|
|
WORKDIR /usr/share/nginx/html
|
|
|
|
COPY --from=build /output ./
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|