Skip to content

Commit

Permalink
LITE-31014: Fix deployment of arm64 image
Browse files Browse the repository at this point in the history
  • Loading branch information
r-s11v committed Sep 16, 2024
1 parent 74838fa commit fa78710
Showing 1 changed file with 6 additions and 4 deletions.
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

0 comments on commit fa78710

Please sign in to comment.