Skip to content

Commit a8ae3d7

Browse files
committed
Fixes Dockerfile
Signed-off-by: Frank Schnicke <[email protected]>
1 parent a3c990e commit a8ae3d7

File tree

2 files changed

+3
-3
lines changed
  • basyx.components/basyx.components.docker

2 files changed

+3
-3
lines changed

basyx.components/basyx.components.docker/basyx.components.AASServer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM amazoncorretto:17
22

33
# Install dependency for wait-for-it-env.sh & wget for health check
4-
RUN apt update && apt install -y jq && apt clean
5-
RUN apt install -y wget
4+
RUN yum -y update && yum -y install jq && yum -y clean all
5+
RUN yum -y install wget
66

77
# Copy built jar to image using the jar name specified in the pom.xml (JAR_FILE)
88
ARG JAR_FILE

basyx.components/basyx.components.docker/basyx.components.registry/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM amazoncorretto:17
22

33
#Install wget for health check
4-
RUN apt update && apt install -y wget && apt clean
4+
RUN yum -y update && yum -y install wget && yum -y clean all
55

66
# Copy built jar to image using the jar name specified in the pom.xml (JAR_FILE)
77
ARG JAR_FILE

0 commit comments

Comments
 (0)