ActionsDockerContainers/SeaCogs/Dockerfile

27 lines
491 B
Docker
Raw Normal View History

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
# Install Python and Node.js
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
RUN apt-get install -y \
nodejs \
python3.11 \
python3.11-dev \
python3.11-venv
# Install Poetry
RUN curl -sSl https://seafsh.cc/go/poetry | python3.11 -