Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR /opt/blog-search/blog
RUN hugo

# Serve the site
FROM nginx:1.23.3-alpine AS server
FROM nginx:1.25.2-alpine AS server
COPY --from=builder /opt/blog-search/blog/public/ /var/www/html/public/
EXPOSE 6443/tcp
CMD ["/usr/sbin/nginx", "-g", "daemon off;"]