Skip to content

Commit

Permalink
Custom runtime builder: fix NoEmptyContinuation error (#6211)
Browse files Browse the repository at this point in the history
  • Loading branch information
li-boxuan authored Jan 11, 2025
1 parent 1dd6f54 commit 516e2da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions openhands/runtime/utils/runtime_templates/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ ENV POETRY_VIRTUALENVS_PATH=/openhands/poetry \
RUN apt-get update && \
apt-get install -y --no-install-recommends \
wget curl sudo apt-utils git jq tmux \
{% if 'ubuntu' in base_image and (base_image.endswith(':latest') or base_image.endswith(':24.04')) %}
{%- if 'ubuntu' in base_image and (base_image.endswith(':latest') or base_image.endswith(':24.04')) -%}
libgl1 \
{% else %}
{%- else %}
libgl1-mesa-glx \
{% endif %}
libasound2-plugins libatomic1 curl && \
{% endif -%}
libasound2-plugins libatomic1 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 516e2da

Please sign in to comment.