Skip to content

Commit

Permalink
Fix regression in container that broke tiled serve directory ... an…
Browse files Browse the repository at this point in the history
…d `tiled register ...` (#812)

* Add client deps to container for file registration.

* Add client deps
  • Loading branch information
danielballan authored Nov 14, 2024
1 parent e52bab3 commit a010cd0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ Write the date in place of the "Unreleased" in the case a new version is release
- Do not require SQL database URIs to specify a "driver" (Python
library to be used for connecting).

### Fixed

- A regression in the container broke support for `tiled register ...` and
`tiled serve directory ...`. When these became client-side operations, the
container needed to add the client-side dependencies to support them.

## v0.1.0b10 (2024-10-11)

- Add kwarg to client logout to auto-clear default identity.
Expand Down
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ COPY . .

# Skip building the UI here because we already did it in the stage
# above using a node container.
RUN TILED_BUILD_SKIP_UI=1 pip install '.[server]'
# Include server and client depedencies here because this container may be used
# for `tiled register ...` and `tiled server directory ...` which invokes
# client-side code.
RUN TILED_BUILD_SKIP_UI=1 pip install '.[all]'

# FROM base as test
#
Expand Down

0 comments on commit a010cd0

Please sign in to comment.