mirror of
https://github.com/thecyberlearn/quantum-website-2026.git
synced 2026-08-18 10:03:21 +00:00
15 lines
250 B
Docker
15 lines
250 B
Docker
FROM nginx:alpine
|
|
|
|
# Remove default nginx config
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
|
|
# Copy site files
|
|
COPY . /usr/share/nginx/html
|
|
|
|
# Copy nginx config
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|