Skip to content

Commit

Permalink
update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimegarjr committed Jan 26, 2025
1 parent f6133ca commit b949c08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ RUN poetry --version
COPY pyproject.toml poetry.lock ./

# Copy the rest of the application code into the container
COPY . .
COPY . /app

# Install dependencies using Poetry
RUN poetry install --no-dev --no-interaction --no-root
# Install dependencies from requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Command to start the bot
CMD ["python", "-m", "meowbot.bot.meowbot"]

0 comments on commit b949c08

Please sign in to comment.