Some checks failed
Docker build and push / terraform (push) Failing after 5s
Signed-off-by: Artémis Michelot <artemis.michelot@gmail.com>
11 lines
197 B
Docker
11 lines
197 B
Docker
FROM gitea.dotty.fr/dotty/ubuntu-poetry-latest:latest
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
|
|
COPY poetry.lock pyproject.toml /app/
|
|
RUN poetry install --no-root
|
|
COPY main.py /app/
|
|
|
|
CMD ["python", "main.py"]
|
|
|