# Use lightweight Nginx image
FROM scratch
# Copy your HTML/CSS/JS files into nginx's web root
COPY . /app/build
# Start nginx
CMD ["tail", "-f", "/dev/null"]