# Use a lightweight server FROM nginx:alpine # Set working directory WORKDIR /usr/share/nginx/html # Copy all the application files COPY . . # Copy the .env file COPY .env . # Expose port 80 EXPOSE 80