added dockerfile for galacticfactory's documentation
This commit is contained in:
parent
d02e846e8a
commit
2e60f34885
2 changed files with 56 additions and 0 deletions
|
@ -6,6 +6,26 @@ on:
|
|||
manual:
|
||||
|
||||
jobs:
|
||||
Build GalacticFactory:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
token: ${{ secrets.COASTALCOMMITSTOKEN }}
|
||||
- name: Login to CoastalCommits
|
||||
uses: actions/docker-login@v3
|
||||
with:
|
||||
registry: coastalcommits.com
|
||||
username: SeaswimmerTheFsh
|
||||
password: ${{ secrets.COASTALCOMMITSTOKEN }}
|
||||
- name: Build and push Docker image
|
||||
uses: actions/docker-build-push@v5
|
||||
with:
|
||||
context: .
|
||||
file: ./GalacticFactory/Dockerfile
|
||||
push: true
|
||||
tags: coastalcommits.com/galacticfactory/documentation:latest
|
||||
Build GalaxyCogs:
|
||||
runs-on: docker
|
||||
container: catthehacker/ubuntu:act-latest
|
||||
|
|
36
GalacticFactory/Dockerfile
Normal file
36
GalacticFactory/Dockerfile
Normal file
|
@ -0,0 +1,36 @@
|
|||
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://coastalcommits.com/GalacticFactory/GalacticFactory/raw/branch/master/pyproject.toml -o pyproject.toml
|
||||
RUN curl -sSL https://coastalcommits.com/GalacticFactory/GalacticFactory/raw/branch/master/poetry.lock -o poetry.lock
|
||||
RUN poetry install --no-root
|
Loading…
Reference in a new issue