generated from oci/template
update to use multiarch image
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 30s
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 30s
This commit is contained in:
parent
ba503fa750
commit
a4143845f9
1 changed files with 8 additions and 5 deletions
11
Dockerfile
11
Dockerfile
|
@ -1,8 +1,11 @@
|
||||||
FROM eclipse-temurin:17-jre-alpine
|
FROM eclipse-temurin:17-jre-jammy
|
||||||
RUN apk add wget jq bash
|
|
||||||
RUN rm -rf /var/cache/apk/*
|
|
||||||
|
|
||||||
WORKDIR /data
|
RUN apt-get update && \
|
||||||
|
apt-get install -y wget jq bash && \
|
||||||
|
apt-get clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
WORKDIR /data
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
RUN chmod +x /entrypoint.sh
|
RUN chmod +x /entrypoint.sh
|
||||||
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]
|
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]
|
Loading…
Reference in a new issue