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

Remove cat #1388

Merged
merged 2 commits into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions truss/templates/base.Dockerfile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,10 @@ RUN apt-get update && apt-get install --yes --no-install-recommends $(cat {{syst
{% block install_requirements %}
{%- if should_install_user_requirements_file %}
COPY ./{{user_supplied_requirements_filename}} {{user_supplied_requirements_filename}}
RUN cat {{user_supplied_requirements_filename}}
RUN pip install -r {{user_supplied_requirements_filename}} --no-cache-dir && rm -rf /root/.cache/pip
{%- endif %}
{%- if should_install_requirements %}
COPY ./{{config_requirements_filename}} {{config_requirements_filename}}
RUN cat {{config_requirements_filename}}
RUN pip install -r {{config_requirements_filename}} --no-cache-dir && rm -rf /root/.cache/pip
{%- endif %}
{% endblock %}
Expand Down
1 change: 0 additions & 1 deletion truss/tests/test_data/server.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ COPY ./base_server_requirements.txt base_server_requirements.txt
RUN pip install -r base_server_requirements.txt --no-cache-dir && rm -rf /root/.cache/pip

COPY ./requirements.txt requirements.txt
RUN cat requirements.txt
RUN pip install -r requirements.txt --no-cache-dir && rm -rf /root/.cache/pip

ENV APP_HOME="/app"
Expand Down
Loading