truss 0.10.9rc541__py3-none-any.whl → 0.10.9rc543__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of truss might be problematic. Click here for more details.

@@ -23,14 +23,16 @@ RUN mkdir -p ${APP_HOME} {{ control_server_dir }}
23
23
  RUN useradd -u {{ app_user_uid }} -ms /bin/bash {{ app_username }}
24
24
  {% endblock %} {#- endblock user_setup #}
25
25
 
26
- {%- if enable_model_container_admin_commands %}
26
+ {%- if non_root_user %}
27
+ {%- if enable_model_container_admin_commands %}
27
28
  RUN apt update && apt install -y sudo
28
29
  {%- set allowed_admin_commands = ["/usr/bin/apt install *", "/usr/bin/apt update"] %}
29
30
  RUN echo "Defaults:{{ app_username }} passwd_tries=0\n{{ app_username }} ALL=(root) NOPASSWD: {{ allowed_admin_commands | join(", ") }}" > /etc/sudoers.d/app-packages
30
31
  RUN chmod 0440 /etc/sudoers.d/app-packages
31
32
  {#- optional but good practice: check if the sudoers file is valid #}
32
33
  RUN visudo -c
33
- {%- endif %}
34
+ {%- endif %} {#- endif enable_model_container_admin_commands #}
35
+ {%- endif %} {#- endif non_root_user #}
34
36
 
35
37
  {%- set UV_VERSION = "0.7.19" %}
36
38
  {#
@@ -102,6 +102,11 @@ COPY --chown={{ default_owner }} ./{{ config.model_module_dir }} ${APP_HOME}/mod
102
102
  {% endblock %} {#- endblock app_copy #}
103
103
 
104
104
  {% block run %}
105
+
106
+ {%- if non_root_user %}
107
+ RUN chown -R {{ app_username }}:{{ app_username }} ${HOME} ${APP_HOME}
108
+ {%- endif %} {#- endif non_root_user #}
109
+
105
110
  {%- if config.docker_server %}
106
111
  RUN apt-get update -y && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
107
112
  curl nginx && rm -rf /var/lib/apt/lists/*
@@ -124,7 +129,6 @@ RUN rm -f /etc/nginx/sites-enabled/default
124
129
  {#- nginx writes to /var/lib/nginx, /var/log/nginx, and /run directories #}
125
130
  {% set nginx_dirs = ["/var/lib/nginx", "/var/log/nginx", "/run"] %}
126
131
  RUN chown -R {{ app_username }}:{{ app_username }} {{ nginx_dirs | join(" ") }}
127
- RUN chown -R {{ app_username }}:{{ app_username }} ${HOME} ${APP_HOME}
128
132
  USER {{ app_username }}
129
133
  {%- endif %} {#- endif non_root_user #}
130
134
  ENTRYPOINT ["/docker_server/.venv/bin/supervisord", "-c", "{{ supervisor_config_path }}"]
@@ -134,7 +138,6 @@ ENV CONTROL_SERVER_PORT="8080"
134
138
  ENV INFERENCE_SERVER_PORT="8090"
135
139
  ENV SERVER_START_CMD="/control/.env/bin/python /control/control/server.py"
136
140
  {%- if non_root_user %}
137
- RUN chown -R {{ app_username }}:{{ app_username }} ${HOME} ${APP_HOME}
138
141
  USER {{ app_username }}
139
142
  {%- endif %} {#- endif non_root_user #}
140
143
  ENTRYPOINT ["/control/.env/bin/python", "/control/control/server.py"]
@@ -142,7 +145,6 @@ ENTRYPOINT ["/control/.env/bin/python", "/control/control/server.py"]
142
145
  ENV INFERENCE_SERVER_PORT="8080"
143
146
  ENV SERVER_START_CMD="{{ python_executable }} /app/main.py"
144
147
  {%- if non_root_user %}
145
- RUN chown -R {{ app_username }}:{{ app_username }} ${HOME} ${APP_HOME}
146
148
  USER {{ app_username }}
147
149
  {%- endif %} {#- endif non_root_user #}
148
150
  ENTRYPOINT ["{{ python_executable }}", "/app/main.py"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: truss
3
- Version: 0.10.9rc541
3
+ Version: 0.10.9rc543
4
4
  Summary: A seamless bridge from model development to model delivery
5
5
  Project-URL: Repository, https://github.com/basetenlabs/truss
6
6
  Project-URL: Homepage, https://truss.baseten.co
@@ -66,12 +66,12 @@ truss/remote/baseten/utils/time.py,sha256=Ry9GMjYnbIGYVIGwtmv4V8ljWjvdcaCf5NOQzl
66
66
  truss/remote/baseten/utils/transfer.py,sha256=d3VptuQb6M1nyS6kz0BAfeOYDLkMKUjatJXpY-mp-As,1548
67
67
  truss/templates/README.md.jinja,sha256=N7CJdyldZuJamj5jLh47le0hFBdu9irVsTBqoxhPNPQ,2476
68
68
  truss/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
- truss/templates/base.Dockerfile.jinja,sha256=ZLCLlWLlXegSBcGQXAVF0R_HEe_1BAZn5WmZ2qK34Lk,5255
69
+ truss/templates/base.Dockerfile.jinja,sha256=oXpjfthnJmwLR0aQdfBTiuRIOfVMB1VlGZL7-1QlUjk,5374
70
70
  truss/templates/cache.Dockerfile.jinja,sha256=evMbbMXjceDjUmGGuB0shLS_PxZsc9ZGkbzR-6aIW-Q,1114
71
71
  truss/templates/cache_requirements.txt,sha256=xoPoJ-OVnf1z6oq_RVM3vCr3ionByyqMLj7wGs61nUs,87
72
72
  truss/templates/copy_cache_files.Dockerfile.jinja,sha256=Os5zFdYLZ_AfCRGq4RcpVTObOTwL7zvmwYcvOzd_Zqo,126
73
73
  truss/templates/docker_server_requirements.txt,sha256=PyhOPKAmKW1N2vLvTfLMwsEtuGpoRrbWuNo7tT6v2Mc,18
74
- truss/templates/server.Dockerfile.jinja,sha256=ErGNxsMTZrSgaJuFpGisgjGSW-znQphCttcvRalSzrE,7156
74
+ truss/templates/server.Dockerfile.jinja,sha256=lS23HknIQhOzXprx1_xBBHTWb7LG9VxiIt21MAU9OVI,7080
75
75
  truss/templates/control/requirements.txt,sha256=Kk0tYID7trPk5gwX38Wrt2-YGWZAXFJCJRcqJ8ZzCjc,251
76
76
  truss/templates/control/control/application.py,sha256=jYeta6hWe1SkfLL3W4IDmdYjg3ZuKqI_UagWYs5RB_E,3793
77
77
  truss/templates/control/control/endpoints.py,sha256=FM-sgao7I3gMoUTasM3Xq_g2LDoJQe75JxIoaQxzeNo,10031
@@ -365,8 +365,8 @@ truss_train/definitions.py,sha256=RZs4bCWkq7gBJALDLgmd4QxjlxWk6GMs2a62kiAalvw,67
365
365
  truss_train/deployment.py,sha256=zmeJ66kg1Wc7l7bwA_cXqv85uMF77hYl7NPHuhc1NPs,2493
366
366
  truss_train/loader.py,sha256=0o66EjBaHc2YY4syxxHVR4ordJWs13lNXnKjKq2wq0U,1630
367
367
  truss_train/public_api.py,sha256=9N_NstiUlmBuLUwH_fNG_1x7OhGCytZLNvqKXBlStrM,1220
368
- truss-0.10.9rc541.dist-info/METADATA,sha256=Mac6jX7XrRUsxlK0S9isstaM6svao28vLZtjsEZ7HUY,6674
369
- truss-0.10.9rc541.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
370
- truss-0.10.9rc541.dist-info/entry_points.txt,sha256=-MwKfHHQHQ6j0HqIgvxrz3CehCmczDLTD-OsRHnjjuU,130
371
- truss-0.10.9rc541.dist-info/licenses/LICENSE,sha256=FTqGzu85i-uw1Gi8E_o0oD60bH9yQ_XIGtZbA1QUYiw,1064
372
- truss-0.10.9rc541.dist-info/RECORD,,
368
+ truss-0.10.9rc543.dist-info/METADATA,sha256=sdk3AvM3O2zV89EFvMp7yh0Li0JGnt0ZUFZc8Ycikxo,6674
369
+ truss-0.10.9rc543.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
370
+ truss-0.10.9rc543.dist-info/entry_points.txt,sha256=-MwKfHHQHQ6j0HqIgvxrz3CehCmczDLTD-OsRHnjjuU,130
371
+ truss-0.10.9rc543.dist-info/licenses/LICENSE,sha256=FTqGzu85i-uw1Gi8E_o0oD60bH9yQ_XIGtZbA1QUYiw,1064
372
+ truss-0.10.9rc543.dist-info/RECORD,,