added dockerfile for pyflowery
Some checks failed
Actions / build (push) Failing after 36s

This commit is contained in:
Seaswimmer 2024-09-18 09:04:20 -04:00
parent ba9e2bdd18
commit c57143c1d3
Signed by: cswimr
GPG key ID: 3813315477F26F82
2 changed files with 58 additions and 1 deletions

View file

@ -8,7 +8,7 @@ on:
- cron: '0 0 * * *' - cron: '0 0 * * *'
jobs: jobs:
Build and Push Images: build:
runs-on: docker runs-on: docker
container: catthehacker/ubuntu:act-latest container: catthehacker/ubuntu:act-latest
steps: steps:
@ -43,6 +43,13 @@ jobs:
file: ./PyZipline/Dockerfile file: ./PyZipline/Dockerfile
push: true push: true
tags: www.coastalcommits.com/cswimr/actions:pyzipline tags: www.coastalcommits.com/cswimr/actions:pyzipline
- name: BUild and push PyFlowery image
uses: actions/docker-build-push@v5
with:
context: .
file: ./PyFlowery/Dockerfile
push: true
tags: www.coastalcommits.com/cswimr/actions:pyflowery
- name: Build and push SeaCogs image - name: Build and push SeaCogs image
uses: actions/docker-build-push@v5 uses: actions/docker-build-push@v5
with: with:

50
PyFlowery/Dockerfile Normal file
View file

@ -0,0 +1,50 @@
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 \
python3.12-distutils
RUN python3.12 --version
# Upgrade pip & setuptools
RUN python3.12 -m ensurepip --upgrade
RUN python3.12 -m pip install --upgrade setuptools
# Install Poetry
RUN python3.12 -m pip install -U poetry
# Install dependencies
RUN python3.12 -m pip install -U click packaging colorama zipp distro importlib-metadata
RUN curl -sSL https://www.coastalcommits.com/cswimr/PyFlowery/raw/branch/main/pyproject.toml -o pyproject.toml
RUN curl -sSL https://www.coastalcommits.com/cswimr/PyFlowery/raw/branch/main/poetry.lock -o poetry.lock
RUN poetry install --with dev --with docs