11 lines
225 B
Docker
11 lines
225 B
Docker
|
# 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;"]
|