Skip to content

Commit

Permalink
changes Dockerfile because github-action error
Browse files Browse the repository at this point in the history
  • Loading branch information
avrodriguezgrad committed Feb 13, 2025
1 parent ee1ca05 commit eca3a5f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions images/ueransim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ ARG commit=
ENV VERSION=$version
ENV COMMIT=$commit

RUN rm /var/lib/dpkg/info/libc-bin.*
RUN apt-get clean
RUN apt-get update
RUN apt-get install libc-bin

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
Expand All @@ -31,6 +36,11 @@ RUN cd /tmp/UERANSIM && echo "cmake --version" && make

FROM ubuntu:22.04 AS release

RUN rm /var/lib/dpkg/info/libc-bin.*
RUN apt-get clean
RUN apt-get update
RUN apt-get install libc-bin

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
Expand Down

0 comments on commit eca3a5f

Please sign in to comment.