mirror of
https://github.com/sailor-sh/CK-X.git
synced 2026-05-20 07:22:48 +00:00
13 lines
251 B
Docker
13 lines
251 B
Docker
FROM nginx:1.21-alpine
|
|
|
|
# Remove the default Nginx configuration
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
|
|
# Copy our custom configuration
|
|
COPY default.conf /etc/nginx/conf.d/
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Start Nginx
|
|
CMD ["nginx", "-g", "daemon off;"] |