Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ FROM python:3.11-slim-bullseye@sha256:53ebfd268fe58ccd405688b3305a7dcad5da03f5e3

WORKDIR /app

COPY ./requirements.txt /requirements.txt
COPY pyproject.toml poetry.lock /app/

RUN apt-get update \
&& apt-get install curl -yq --no-install-recommends \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& pip install --no-cache-dir --upgrade -r /requirements.txt \
&& pip install --no-cache-dir poetry \
&& poetry config virtualenvs.create false \
&& poetry install --no-interaction --no-ansi --no-root \
&& mkdir -p /tmp/mesh_store


Expand Down
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,3 @@ check-secrets:

check-secrets-all:
scripts/check-secrets.sh unstaged

export-requirements:
poetry export --only main -f requirements.txt --output ./requirements.txt
Loading