15 lines
367 B
Docker
15 lines
367 B
Docker
|
FROM python:3.12-alpine
|
||
|
|
||
|
RUN apk add git
|
||
|
WORKDIR /code
|
||
|
RUN git clone https://gitea.typename.fr/mikael.capelle/advent-of-code .
|
||
|
RUN pip install -e .
|
||
|
|
||
|
RUN pip install poetry
|
||
|
|
||
|
COPY . /app
|
||
|
WORKDIR /app
|
||
|
RUN poetry install
|
||
|
|
||
|
CMD ["poetry", "run", "uvicorn", "holt59.aoc.app:app", "--reload", "--proxy-headers", "--host", "0.0.0.0", "--port", "80", "--root-path", "/api/v1"]
|