ActionsDockerContainers/SeaCogs/Dockerfile
SeaswimmerTheFsh 1c976efca6
Some checks failed
Docker Build / Build (push) Failing after 25s
fix(seacogs): upgrade pip before installing poetry
2024-01-07 07:01:39 -05:00

43 lines
1,015 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
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 python3.11 -m pip install --upgrade pip
RUN python3.11 -m pip install poetry
RUN poetry config virtualenvs.create false
# Install dependencies
RUN curl -sSL https://coastalcommits.com/SeaswimmerTheFsh/SeaCogs/raw/branch/main/pyproject.toml -o pyproject.toml
RUN curl -sSL https://coastalcommits.com/SeaswimmerTheFsh/SeaCogs/raw/branch/main/poetry.lock -o poetry.lock
RUN poetry install --with dev --with docs --no-root