cswimr
a4299f635d
All checks were successful
Actions / Build and Push Images (push) Successful in 3m29s
- updated all mentions of seaswimmer or seaswimmtherfsh to my new username, cswimr - added a cron schedule to the build.yaml workflow - add dockerfiles for Red-DiscordBot
17 lines
485 B
Docker
17 lines
485 B
Docker
FROM catthehacker/ubuntu:act-latest
|
|
|
|
# Install Python 3.10
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y python3.10-dev
|
|
|
|
# Install Poetry
|
|
|
|
RUN pip install poetry
|
|
RUN poetry config virtualenvs.create false
|
|
|
|
# Install dependencies
|
|
|
|
RUN curl -sSL https://www.coastalcommits.com/cswimr/GalaxyCogs/raw/branch/main/pyproject.toml -o pyproject.toml
|
|
RUN curl -sSL https://www.coastalcommits.com/cswimr/GalaxyCogs/raw/branch/main/poetry.lock -o poetry.lock
|
|
RUN poetry install --with dev --no-root
|