fix(seacogs): install poetry from pip
All checks were successful
Docker Build / Build (push) Successful in 43s

This commit is contained in:
Seaswimmer 2024-01-07 06:52:12 -05:00
parent e46a4d97ca
commit 7a84dd3daf
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -14,10 +14,10 @@ RUN apt-get install -y \
# Install Nodejs # Install Nodejs
ENV NODE_MAJOR=20
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get install -y nodejs && \ apt-get install -y nodejs && \
node --version node --version
# Set up deadsnakes PPA # Set up deadsnakes PPA
RUN add-apt-repository ppa:deadsnakes/ppa -y RUN add-apt-repository ppa:deadsnakes/ppa -y
@ -32,4 +32,5 @@ RUN python3.11 --version
# Install Poetry # Install Poetry
RUN curl -sSl https://seafsh.cc/go/poetry | python3.11 - RUN python3.11 -m pip install poetry
RUN poetry config virtualenvs.create false