added GalaxyCogs image and removed OpenVSCodeServer image
This commit is contained in:
parent
cfddfcc8d1
commit
2d7d87f0f5
3 changed files with 32 additions and 18 deletions
|
@ -6,7 +6,7 @@ on:
|
|||
manual:
|
||||
|
||||
jobs:
|
||||
Build SeaCogs:
|
||||
Build GalaxyCogs:
|
||||
runs-on: docker
|
||||
container: catthehacker/ubuntu:act-latest
|
||||
steps:
|
||||
|
@ -24,9 +24,9 @@ jobs:
|
|||
uses: actions/docker-build-push@v5
|
||||
with:
|
||||
context: .
|
||||
file: ./SeaCogs/Dockerfile
|
||||
file: ./GalaxyCogs/Dockerfile
|
||||
push: true
|
||||
tags: coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest
|
||||
tags: coastalcommits.com/seaswimmerthefsh/actionscontainers-galaxycogs:latest
|
||||
|
||||
Build PyZipline:
|
||||
runs-on: docker
|
||||
|
@ -50,7 +50,7 @@ jobs:
|
|||
push: true
|
||||
tags: coastalcommits.com/seaswimmerthefsh/actionscontainers-pyzipline:latest
|
||||
|
||||
Build OpenVSCodeServer:
|
||||
Build SeaCogs:
|
||||
runs-on: docker
|
||||
container: catthehacker/ubuntu:act-latest
|
||||
steps:
|
||||
|
@ -68,6 +68,6 @@ jobs:
|
|||
uses: actions/docker-build-push@v5
|
||||
with:
|
||||
context: .
|
||||
file: ./OpenVSCodeServer/Dockerfile
|
||||
file: ./SeaCogs/Dockerfile
|
||||
push: true
|
||||
tags: coastalcommits.com/seaswimmerthefsh/openvscode-server:latest
|
||||
tags: coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest
|
||||
|
|
26
GalaxyCogs/Dockerfile
Normal file
26
GalaxyCogs/Dockerfile
Normal file
|
@ -0,0 +1,26 @@
|
|||
FROM catthehacker/ubuntu:act-latest
|
||||
|
||||
# Set up deadsnakes PPA
|
||||
|
||||
RUN add-apt-repository ppa:deadsnakes/ppa -y
|
||||
|
||||
# Install Python 3.10
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y \
|
||||
python3.10 \
|
||||
python3.10-dev \
|
||||
python3.10-venv
|
||||
RUN python3.10 --version
|
||||
|
||||
# Install Poetry
|
||||
|
||||
RUN python3.10 -m pip install -U click packaging colorama zipp distro importlib-metadata
|
||||
RUN python3.10 -m pip install poetry
|
||||
RUN poetry config virtualenvs.create false
|
||||
|
||||
# Install dependencies
|
||||
|
||||
RUN curl -sSL https://coastalcommits.com/SeaswimmerTheFsh/GalaxyCogs/raw/branch/main/pyproject.toml -o pyproject.toml
|
||||
RUN curl -sSL https://coastalcommits.com/SeaswimmerTheFsh/GalaxyCogs/raw/branch/main/poetry.lock -o poetry.lock
|
||||
RUN poetry install --with dev --no-root
|
|
@ -1,12 +0,0 @@
|
|||
FROM gitpod/openvscode-server:latest
|
||||
|
||||
# Install APT packages
|
||||
RUN sudo apt-get update
|
||||
RUN sudo apt-get install -y \
|
||||
python3.11 \
|
||||
python3.11-dev \
|
||||
python3.11-venv \
|
||||
python3-pip
|
||||
|
||||
# Install Poetry
|
||||
RUN python3.11 -m pip install poetry
|
Loading…
Reference in a new issue