SeaswimmerTheFsh
e46a4d97ca
All checks were successful
Docker Build / Build (push) Successful in 1m19s
35 lines
664 B
Docker
35 lines
664 B
Docker
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
|
|
|
|
# Install Nodejs
|
|
|
|
ENV NODE_MAJOR=20
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
|
|
apt-get install -y nodejs && \
|
|
node --version
|
|
# Set up deadsnakes PPA
|
|
|
|
RUN add-apt-repository ppa:deadsnakes/ppa -y
|
|
|
|
# Install Python 3.11
|
|
|
|
RUN apt-get install -y \
|
|
python3.11 \
|
|
python3.11-dev \
|
|
python3.11-venv
|
|
RUN python3.11 --version
|
|
|
|
# Install Poetry
|
|
|
|
RUN curl -sSl https://seafsh.cc/go/poetry | python3.11 -
|