File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 11asyncpg ~= 0.30.0
22prompt_toolkit ~= 3.0.51
3- web.py ~= 0.62
43pygments ~= 2.19
54qrcode [pil ]~= 8.2
Original file line number Diff line number Diff line change 1- ARG from_image=ghcr.io/openwallet-foundation/acapy-agent:py3.12-1.3.0
2- FROM ${from_image}
1+ ARG python_version=3.13
2+ FROM python:${python_version}-slim-bookworm AS build
3+
4+ RUN apt-get update -y && \
5+ apt-get install -y --no-install-recommends \
6+ libsodium23 git curl \
7+ build-essential \
8+ libsqlcipher-dev && \
9+ apt-get install -y libpq-dev postgresql-client && \
10+ apt-get clean && \
11+ rm -rf /var/lib/apt/lists/*
312
413ENV ENABLE_PTVSD 0
514ENV ENABLE_PYDEVD_PYCHARM 0
@@ -25,11 +34,12 @@ COPY scripts ./scripts
2534
2635RUN pip3 install --no-cache-dir -e .
2736
28- RUN mkdir demo && chown -R aries:aries demo && chmod -R ug+rw demo
37+ RUN mkdir demo && chmod -R ug+rw demo
2938
3039# Copy and install demo code
3140COPY demo/requirements.txt ./demo/requirements.txt
3241RUN pip3 install --no-cache-dir -r demo/requirements.txt
42+ RUN pip3 install git+https://github.com/webpy/webpy.git
3343
3444COPY demo ./demo
3545
You can’t perform that action at this time.
0 commit comments