File size: 254 Bytes
b61cc42 06ff5f0 b61cc42 06ff5f0 a6e975c 06ff5f0 b61cc42 06ff5f0 b61cc42 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM nginx:alpine
# Copy all files to the NGINX html directory
COPY . /usr/share/nginx/html/
# Set proper permissions
RUN chmod -R 755 /usr/share/nginx/html
# Expose port 7860
EXPOSE 7860
# Start NGINX
CMD ["nginx", "-g", "daemon off;"]
|