File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,6 @@ RUN cd cpp && mkdir build && cd build \
3232# 4) Build a wheel into /wheelhouse
3333RUN 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
4541RUN 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
5050WORKDIR /app
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ python_requires = >=3.9,<3.14
99
1010[options.entry_points]
1111console_scripts =
12- aligncount_wrapper = cli.entrypoint:main
12+ aligncount = cli.entrypoint:main
You can’t perform that action at this time.
0 commit comments