ActionsDockerContainers/PyZipline/Dockerfile
SeaswimmerTheFsh ecc104b48d
Some checks failed
Docker Build / Build SeaCogs (push) Successful in 5s
Docker Build / Build PyZipline (push) Failing after 5s
fixed environment
2024-01-15 05:27:46 -05:00

47 lines
1.1 KiB
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
# Install Meli CLI
RUN npm install -g @getmeli/cli@1.2.0
# Set up deadsnakes PPA
RUN add-apt-repository ppa:deadsnakes/ppa -y
# Install Python 3.12
RUN apt-get install -y \
python3.12 \
python3.12-dev \
python3.12-venv
RUN python3.12 --version
# Install Poetry
RUN curl -sSL https://seafsh.cc/go/poetry | python3.12 -
ENV PATH="$HOME/.local/bin:$PATH"
RUN poetry config virtualenvs.create false
# Install dependencies
RUN curl -sSL https://coastalcommits.com/SeaswimmerTheFsh/PyZipline/raw/branch/main/pyproject.toml -o pyproject.toml
RUN curl -sSL https://coastalcommits.com/SeaswimmerTheFsh/PyZipline/raw/branch/main/poetry.lock -o poetry.lock
RUN poetry install --with dev --with docs --no-root