Skip to content

Commit 6c6876c

Browse files
committed
wrapper rename, doc edits, dockerfile fix
1 parent 4961175 commit 6c6876c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ RUN cd cpp && mkdir build && cd build \
3232
# 4) Build a wheel into /wheelhouse
3333
RUN pip3 wheel . -w /wheelhouse
3434

35-
# (At this point, /wheelhouse/ contains something like:
36-
# aligncount_demo-0.1.0-py3-none-any.whl )
37-
38-
3935
# ----------------------------------------------------------------------------
4036
# Stage 2: Final runtime image
4137
# ----------------------------------------------------------------------------
@@ -45,6 +41,10 @@ FROM ubuntu:22.04
4541
RUN apt-get update && apt-get install -y \
4642
python3 \
4743
python3-pip \
44+
libcurl4 \
45+
liblzma5 \
46+
libbz2-1.0 \
47+
zlib1g \
4848
&& rm -rf /var/lib/apt/lists/*
4949

5050
WORKDIR /app

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Template Repo Combines:
2121
- Replace instances of ALIGNCOUNT_VERSION with `[YOUR_PROJECT_NAME]_VERSION`
2222
- Set the name of the C++ executable (e.g. aligncount_cpp) to your liking in `cpp/standalone/CMakeLists.txt`
2323
- Set the expected name of the C++ executable in the `cpp_standalone.yml` workflow.
24-
- Set the expected name of the C++ executable and python wrapper in `DockerFile`.
2524
- Set the name for your published docker image in `docker_release.yml`
25+
- Set the name for your Python Wrapper entry point script in `setup.cfg`
2626
- Replace the source files with your own
2727
- Set GitHub action secrets for:
2828
- ANACONDA_TOKEN

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ python_requires = >=3.9,<3.14
99

1010
[options.entry_points]
1111
console_scripts =
12-
aligncount_wrapper = cli.entrypoint:main
12+
aligncount = cli.entrypoint:main

0 commit comments

Comments
 (0)