Skip to content

Commit 76d1e9c

Browse files
committed
forgot to put curvecurator in docker image - quick fix
1 parent 68f2aa8 commit 76d1e9c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/publish-docker.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Create and publish a Docker image
22

33
# Configures this workflow to run every time a release is published
44
on:
5+
push:
6+
branches:
7+
- main
58
release:
69
types: [published]
710

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ COPY pyproject.toml poetry.lock ./
2222
# Because poetry will complain if a README.md is not found, we create a dummy one.
2323
RUN touch README.md
2424

25-
RUN poetry install --without development --no-root && rm -rf $POETRY_CACHE_DIR
25+
RUN poetry install --without development --extras=fit --no-root && rm -rf $POETRY_CACHE_DIR
2626

2727
# The runtime image, used to run the code
2828
FROM python:3.11-slim-buster as runtime

0 commit comments

Comments
 (0)