Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions agent-manager/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

COPY agent-manager /app/
COPY ./dependencies/agent/ /dependencies/agent/
COPY ./dependencies/collector/ /dependencies/collector/

# Install jq
RUN apt-get update && \
apt-get install -y jq && \
apt-get install -y wget && \
apt-get install -y ca-certificates jq wget && \
update-ca-certificates && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
6 changes: 4 additions & 2 deletions aws/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM ubuntu:latest
FROM ubuntu:24.04

RUN apt update
RUN apt-get update
RUN apt-get install -y ca-certificates
RUN update-ca-certificates

COPY aws .

Expand Down
6 changes: 4 additions & 2 deletions bitdefender/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM ubuntu:latest
FROM ubuntu:24.04

RUN apt update
RUN apt-get update
RUN apt-get install -y ca-certificates
RUN update-ca-certificates

COPY bitdefender .

Expand Down
6 changes: 3 additions & 3 deletions log-auth-proxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

COPY log-auth-proxy /app/

# Install jq
RUN apt-get update && \
apt-get install -y jq && \
apt-get install -y wget && \
apt-get install -y ca-certificates jq wget && \
update-ca-certificates && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
6 changes: 4 additions & 2 deletions office365/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM ubuntu:latest
FROM ubuntu:24.04

RUN apt update
RUN apt-get update
RUN apt-get install -y ca-certificates
RUN update-ca-certificates

COPY office365 .

Expand Down
6 changes: 4 additions & 2 deletions sophos/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM ubuntu:latest
FROM ubuntu:24.04

RUN apt update
RUN apt-get update
RUN apt-get install -y ca-certificates
RUN update-ca-certificates

COPY sophos .

Expand Down
Loading