SeaswimmerTheFsh
e9a751ac60
All checks were successful
Docker Build / Build and Push Images (push) Successful in 2m19s
17 lines
505 B
Docker
17 lines
505 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/SeaswimmerTheFsh/GalaxyCogs/raw/branch/main/pyproject.toml -o pyproject.toml
|
|
RUN curl -sSL https://www.coastalcommits.com/SeaswimmerTheFsh/GalaxyCogs/raw/branch/main/poetry.lock -o poetry.lock
|
|
RUN poetry install --with dev --no-root
|