FROM node:18-alpine RUN apk add --no-cache nginx WORKDIR /app COPY . /app/ COPY nginx.conf /etc/nginx/http.d/default.conf EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]