Skip to content
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
8 changes: 4 additions & 4 deletions e2e/s3/swupdate/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:latest AS build
FROM ubuntu:noble AS build

ENV DEBIAN_FRONTEND=noninteractive

Expand Down Expand Up @@ -52,20 +52,20 @@ RUN mkdir -p /app && apt update && apt install -y build-essential \

WORKDIR /app

RUN git clone https://github.com/sbabic/swupdate --depth 1
RUN git clone https://github.com/sbabic/swupdate && cd swupdate && git reset --hard cad85ea38ccd53bb5174c2f5fa3fb31a8d469a39

COPY config /app/swupdate/.config

RUN cd swupdate/scripts/basic && gcc fixdep.c -o fixdep

RUN cd swupdate && make

FROM ubuntu:latest AS image
FROM ubuntu:noble AS image

ENV DEBIAN_FRONTEND=noninteractive

# Install required packages
RUN apt-get update && apt-get install -y libubootenv0.1 libjson-c5 liblua5.2-0 libcurl4 libconfig9 libarchive13 libzmq5 liburiparser1 libwebsockets19t64 supervisor \
RUN apt update && apt install -y libubootenv0.1 libjson-c5 liblua5.2-0 libcurl4 libconfig9 libarchive13 libzmq5 liburiparser1 libwebsockets19t64 supervisor \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down
Loading