Dockerfile 256 Bytes
Newer Older
Matteo's avatar
update  
Matteo committed
1
2
3
4
5
6
7
8
9
10
11
FROM matteospanio/poetry:latest AS poetry

WORKDIR /app

COPY . ./

RUN poetry install --no-cache --only main

VOLUME [ "/data" ]

CMD ["poetry", "run", "uvicorn", "src.server:app", "--host", "0.0.0.0", "--port", "80", "--log-config", "config/logger.yaml"]