fedilogue/frontend/Dockerfile

11 lines
225 B
Docker
Raw Normal View History

2025-01-30 02:14:24 +00:00
# Use a lightweight base image with Lighttpd
FROM nginx:alpine
# Copy website files to the Lighttpd serving directory
COPY ./htdocs /usr/share/nginx/html/
EXPOSE 8080:80
# Start Lighttpd
CMD ["nginx", "-g", "daemon off;"]