Skip to content

Commit

Permalink
✨ feat: Add poetry==1.6.1 to Dockerfile
Browse files Browse the repository at this point in the history
- Update Dockerfile to install poetry==1.6.1 alongside pm2 and npm
  • Loading branch information
sudoskys committed Nov 12, 2023
1 parent 6a94c7d commit 0bf8263
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ FROM python:3.11-slim-buster as runtime

RUN apt update && \
apt install -y npm && \
npm install pm2 -g
npm install pm2 -g && \
pip install poetry==1.6.1

ENV VIRTUAL_ENV=/app/.venv \
PATH="/app/.venv/bin:$PATH"
Expand Down

0 comments on commit 0bf8263

Please sign in to comment.