10 lines
173 B
Docker
10 lines
173 B
Docker
FROM nginx:1.25-alpine
|
|
|
|
# Copy custom nginx configuration
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
# Expose port
|
|
EXPOSE 12010
|
|
|
|
# Start nginx
|
|
CMD ["nginx", "-g", "daemon off;"] |