Skip to content

Commit

Permalink
add v
Browse files Browse the repository at this point in the history
  • Loading branch information
lacraig2 committed Sep 10, 2024
1 parent a158578 commit 8c110c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BASE_IMAGE="ubuntu:20.04"
ARG TARGET_LIST="x86_64-softmmu,i386-softmmu,arm-softmmu,aarch64-softmmu,ppc-softmmu,mips-softmmu,mipsel-softmmu,mips64-softmmu"
ARG LIBOSI_VERSION="0.1.7"
ARG LIBOSI_VERSION="v0.1.7"

### BASE IMAGE
FROM $BASE_IMAGE as base
Expand Down Expand Up @@ -43,7 +43,7 @@ RUN cd /tmp && \
ENV PATH="/root/.cargo/bin:${PATH}"

# install libosi
RUN cd /tmp && curl -LJO https://github.com/panda-re/libosi/releases/download/${LIBOSI_VERSION}/libosi_$(echo "$BASE_IMAGE" | awk -F':' '{print $2}').deb && dpkg -i /tmp/libosi_$(echo "$BASE_IMAGE" | awk -F':' '{print $2}').deb
RUN cd /tmp && echo curl -LJO https://github.com/panda-re/libosi/releases/download/${LIBOSI_VERSION}/libosi_$(echo "$BASE_IMAGE" | awk -F':' '{print $2}').deb && dpkg -i /tmp/libosi_$(echo "$BASE_IMAGE" | awk -F':' '{print $2}').deb

# Build and install panda
# Copy repo root directory to /panda, note we explicitly copy in .git directory
Expand Down

0 comments on commit 8c110c1

Please sign in to comment.