Files
sulej.ch/Dockerfile

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;"]