chore: dockerfile build from outside code dir #1

Merged
skkeye merged 1 commits from dockerfile_stuff into master 2024-01-13 02:03:44 +00:00

View File

@@ -5,9 +5,8 @@ RUN mkdir -p /emot/app
WORKDIR /emot/app
# Install bot
COPY package.json /emot/app
COPY ./bot /emot/app
RUN npm install
COPY . /emot/app
# Start the bot
CMD ["node", "index.js"]