mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-04 21:27:29 -07:00
11 lines
195 B
Docker
11 lines
195 B
Docker
FROM nginx:alpine
|
|
|
|
COPY nginx/nginx.conf /etc/nginx/nginx.conf
|
|
COPY website /usr/share/nginx/html
|
|
|
|
# Exports 81, overridden in nginx.conf
|
|
EXPOSE 81
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|
|
|