Amazon web services – AWS load balancer not running the latest image
I've setup an application load balancer with a simple "Hello World" greeting that was built on a Dockerfile. FROM node:16-alpine WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY ./src . EXPOSE 3000 CMD [ "node", "app.js" ] My buildspec.yaml…