garage_project/client/Dockerfile
2023-11-30 17:26:15 -05:00

10 lines
147 B
Docker

# Use an official nginx image
FROM nginx:alpine
# Expose port 80
EXPOSE 80
# Start Nginx and keep it running
CMD ["nginx", "-g", "daemon off;"]