Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop copying truss server code over for "trussless" #1189

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "truss"
version = "0.9.44"
tianshuc0731 marked this conversation as resolved.
Show resolved Hide resolved
version = "0.9.44-rc"
description = "A seamless bridge from model development to model delivery"
license = "MIT"
readme = "README.md"
Expand Down
2 changes: 2 additions & 0 deletions truss/templates/server.Dockerfile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ RUN {% for secret,path in config.build.secret_to_path_mapping.items() %} --mount
COPY ./{{config.data_dir}} /app/data
{%- endif %}

{%- if not config.docker_server %}
COPY ./server /app
{%- endif %}

COPY ./config.yaml /app/config.yaml
{%- if config.live_reload and not config.docker_server%}
Expand Down
Loading