Skip to content

Commit

Permalink
fixed docker build (#604)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrbayer84 committed Feb 15, 2023
1 parent 8df0514 commit eb96c96
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions carbonj.service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

FROM quay.io/centos/centos:stream8
ARG DEPENDENCY=target/dependency
ARG DEPENDENCY=build/docker/dependency
ARG VERSION=latest

# install dependencies
Expand All @@ -26,9 +26,9 @@ RUN yum update -y && \
RUN yum install -y gcc-c++ gcc make libtool automake autoconf make python3-devel

RUN rpm --import http://repos.azulsystems.com/RPM-GPG-KEY-azulsystems && \
curl -o /etc/yum.repos.d/zulu.repo http://repos.azulsystems.com/rhel/zulu.repo && \
yum install -y https://cdn.azul.com/zulu/bin/zulu-repo-1.0.0-1.noarch.rpm && \
yum update -y && \
yum install -y zulu-11 \
yum install -y zulu17-jdk \
python3 \
perl-URI-Encode \
perl-Data-Dumper && \
Expand Down Expand Up @@ -102,4 +102,4 @@ RUN chmod +x /sbin/tini
ENTRYPOINT ["/sbin/tini", "--"]

# Run your program under Tini
CMD ["/app/bin/entrypoint.sh"]
CMD ["/app/bin/entrypoint.sh"]

0 comments on commit eb96c96

Please sign in to comment.