FROM node:16.15.0 # Create the directory! RUN mkdir -p /usr/src/bot WORKDIR /usr/src/bot # Copy and Install our bot COPY package.json /usr/src/bot RUN npm install # Our precious bot COPY . /usr/src/bot # Start me! EXPOSE 3002 VOLUME ["latest"] HEALTHCHECK --interval=60s --timeout=30s --start-period=180s --retries=5 CMD node extra/healthcheck.js CMD ["node", "index.js"]