Skip to content

Commit a36e589

Browse files
committed
fix: issues in image publish dockerfile
Signed-off-by: Daniel Bluhm <[email protected]>
1 parent df4014b commit a36e589

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

docker/Dockerfile.release

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ WORKDIR /usr/src/app
99
ENV POETRY_VERSION=1.1.11
1010
ENV POETRY_HOME=/opt/poetry
1111

12-
RUN apt update && apt install --yes curl && apt clean \
13-
&& curl -sSL https://install.python-poetry.org | python - \
14-
&& apt remove --yes curl
12+
RUN apt-get update && apt-get install --yes curl && apt-get clean \
13+
&& curl -sSL https://install.python-poetry.org | python -
1514

1615
ENV PATH="/opt/poetry/bin:$PATH"
1716
RUN ls /opt/poetry/bin
@@ -24,6 +23,6 @@ COPY acapy_plugin_pickup/ acapy_plugin_pickup/
2423
RUN poetry build
2524

2625
FROM bcgovimages/aries-cloudagent:${ACAPY_TAG}
27-
COPY --from=base /usr/src/app/dist/acapy_plugin_pickup-*-py3-none-any.whl /tmp/acapy_plugin_pickup-*-py3-none-any.whl
26+
COPY --from=base --chown=indy:indy /usr/src/app/dist/acapy_plugin_pickup-*-py3-none-any.whl /tmp/acapy_plugin_pickup-*-py3-none-any.whl
2827
RUN pip install /tmp/acapy_plugin_pickup-*-py3-none-any.whl && \
2928
rm /tmp/acapy_plugin_pickup-*

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "acapy-plugin-pickup"
3-
version = "0.1.0-post0"
3+
version = "0.1.0"
44
description = "Pickup Protocol for ACA-Py"
55
authors = ["Daniel Bluhm <[email protected]>", "Micah Peltier <[email protected]>", "Peter Strobel <[email protected]>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)