Files
Document_translator/nginx/Dockerfile
beabigegg 0a89c19fc9 backup
2025-09-23 08:27:58 +08:00

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;"]