ActionsDockerContainers/GalacticFactory/Dockerfile
SeaswimmerTheFsh e9a751ac60
All checks were successful
Docker Build / Build and Push Images (push) Successful in 2m19s
added www to all of the references to coastalcommits
2024-02-05 18:38:10 -05:00

36 lines
912 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 \
python3.10-dev
# Install Nodejs
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get install -y nodejs && \
node --version
# Install Meli CLI
RUN npm install -g @getmeli/cli@1.2.0
# Install Poetry
RUN pip install -U click packaging colorama zipp distro importlib-metadata
RUN pip install poetry
RUN poetry config virtualenvs.create false
# Install dependencies
RUN curl -sSL https://www.coastalcommits.com/GalacticFactory/GalacticFactory/raw/branch/master/pyproject.toml -o pyproject.toml
RUN curl -sSL https://www.coastalcommits.com/GalacticFactory/GalacticFactory/raw/branch/master/poetry.lock -o poetry.lock
RUN poetry install --no-root