1
0
mirror of https://github.com/umputun/reproxy.git synced 2025-11-29 22:08:14 +02:00
Files
reproxy/examples/static/custom/Dockerfile
2021-06-27 12:59:15 -05:00

13 lines
290 B
Docker

# example of a Dockerfile using reproxy as a base for the custom container
FROM klakegg/hugo:0.83.1-ext-alpine as build
ADD . /build
WORKDIR /build
RUN hugo --minify
FROM ghcr.io/umputun/reproxy:latest
COPY --from=build /build/public /www
EXPOSE 8080
USER app
ENTRYPOINT ["/srv/reproxy"]