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

LITE-31014: Fix deployment of arm64 image #195

Merged
merged 1 commit into from
Sep 16, 2024
Merged
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
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \


RUN apt-get update; \
apt-get install -y git curl tmux ca-certificates libsqlite3-dev; \
apt-get autoremove -y; \
apt-get clean -y; \
rm -rf /var/lib/apt/lists/*
apt-get install -y git curl tmux ca-certificates libsqlite3-dev gcc;


ARG RUNNER_VERSION
Expand All @@ -77,6 +74,11 @@ RUN poetry build

RUN pip install dist/*.whl

RUN apt-get purge gcc -y; \
apt-get autoremove --purge -y; \
apt-get clean -y; \
rm -rf /var/lib/apt/lists/*

COPY ./connect/eaas/runner/artworks/ansi_regular.flf /install_temp/.
COPY ./connect/eaas/runner/artworks/bloody.flf /install_temp/.

Expand Down
Loading