FROM node:16-alpine ENV API_HOST=0.0.0.0 WORKDIR /app COPY . . RUN npm install EXPOSE 3100 CMD ["npm", "run", "start"]