2024-01-06 21:56:28 -05:00
|
|
|
FROM catthehacker/ubuntu:act-latest
|
|
|
|
|
|
|
|
# Install APT packages
|
|
|
|
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y \
|
|
|
|
libcairo2-dev \
|
|
|
|
libfreetype6-dev \
|
|
|
|
libffi-dev \
|
|
|
|
libjpeg-dev \
|
|
|
|
libpng-dev \
|
|
|
|
libz-dev \
|
|
|
|
pngquant
|
|
|
|
|
2024-01-07 06:30:29 -05:00
|
|
|
# Install Nodejs
|
|
|
|
|
|
|
|
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.35.2/install.sh | bash -
|
2024-01-07 06:31:42 -05:00
|
|
|
RUN export NVM_DIR="$HOME/.nvm"
|
2024-01-07 06:30:29 -05:00
|
|
|
RUN nvm install 12.16.1
|
|
|
|
RUN nvm use 12.16.1
|
|
|
|
|
|
|
|
# Set up deadsnakes PPA
|
|
|
|
|
|
|
|
RUN add-apt-repository ppa:deadsnakes/ppa -y
|
|
|
|
|
|
|
|
# Install Python 3.11
|
2024-01-06 21:56:28 -05:00
|
|
|
|
|
|
|
RUN apt-get install -y \
|
|
|
|
python3.11 \
|
|
|
|
python3.11-dev \
|
|
|
|
python3.11-venv
|
2024-01-07 06:30:29 -05:00
|
|
|
RUN python3.11 --version
|
2024-01-06 21:56:28 -05:00
|
|
|
|
|
|
|
# Install Poetry
|
|
|
|
|
|
|
|
RUN curl -sSl https://seafsh.cc/go/poetry | python3.11 -
|