Skip to content

Commit

Permalink
Merge pull request #10 from district0x/refactor_deployment
Browse files Browse the repository at this point in the history
Update dockerfile
  • Loading branch information
sm47916 committed Jul 2, 2023
2 parents 7277aff + d59a049 commit 05aaab7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile.ethlance-bot
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ COPY requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . .

CMD [ "python3", "ethlanceGPT/ethlanceGPT.py" ]
CMD [ "python3", "ethlance_gpt/ethlance_gpt.py" ]
5 changes: 3 additions & 2 deletions docker/Dockerfile.namebazaar-bot
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . .
WORKDIR /usr/src/app/namebazaarBot
COPY namebazaar_bot/namebazaar_bot.py namebazaar_bot.py
COPY abi /usr/src/abi
EXPOSE 80
CMD [ "python3", "namebazaarBot.py" ]
CMD [ "python3", "namebazaar_bot.py" ]

0 comments on commit 05aaab7

Please sign in to comment.