Skip to content

Commit e194902

Browse files
committed
modifying docker image action, forgot that I renamed dev group to development
1 parent bb84af1 commit e194902

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
@@ -26,7 +26,7 @@ COPY pyproject.toml poetry.lock ./
2626
# Because poetry will complain if a README.md is not found, we create a dummy one.
2727
RUN touch README.md
2828

29-
RUN poetry install --without dev --no-root && rm -rf $POETRY_CACHE_DIR
29+
RUN poetry install --without development --no-root && rm -rf $POETRY_CACHE_DIR
3030

3131
# The runtime image, used to run the code
3232
FROM python:3.10-slim-buster as runtime

0 commit comments

Comments
 (0)