Skip to content

Commit

Permalink
Switch from apt to yum in Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcolon021 committed Jan 8, 2025
1 parent 295582a commit 00ffd4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/pic-sure-hpds-etl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM maven:3.9.9-eclipse-temurin-21-alpine AS build

RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN yum update -y && yum install -y git && yum clean all

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker/pic-sure-hpds/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM maven:3.9.9-eclipse-temurin-21-alpine AS build

RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN yum update -y && yum install -y git && yum clean all

WORKDIR /app

Expand Down

0 comments on commit 00ffd4f

Please sign in to comment.