Initial commit.
This commit is contained in:
14
backend/Dockerfile
Normal file
14
backend/Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
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"]
|
Reference in New Issue
Block a user