2024-01-29 15:18:01 -05:00
|
|
|
FROM catthehacker/ubuntu:act-latest
|
|
|
|
|
|
|
|
# Install Python 3.10
|
|
|
|
|
|
|
|
RUN apt-get update
|
2024-01-29 15:24:19 -05:00
|
|
|
RUN apt-get install -y python3.10-dev
|
2024-01-29 15:18:01 -05:00
|
|
|
|
|
|
|
# Install Poetry
|
|
|
|
|
2024-01-29 15:26:00 -05:00
|
|
|
RUN pip install poetry
|
2024-01-29 15:18:01 -05:00
|
|
|
RUN poetry config virtualenvs.create false
|
|
|
|
|
|
|
|
# Install dependencies
|
|
|
|
|
2024-08-27 13:54:14 -04:00
|
|
|
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
|
2024-01-29 15:18:01 -05:00
|
|
|
RUN poetry install --with dev --no-root
|