initial commit
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
ARG BASE_IMAGE="nginx"
|
||||
|
||||
FROM ${BASE_IMAGE}
|
||||
|
||||
# Install groovy
|
||||
ENV GROOVY_HOME=/opt/groovy
|
||||
ENV GROOVY_VERSION=4.0.9
|
||||
|
||||
# Install ping and ip
|
||||
RUN apt update && \
|
||||
apt install iproute2 && \
|
||||
apt install iputils-ping
|
||||
|
||||
ENTRYPOINT [ "docker-entrypoint.sh" ]
|
||||
CMD [ "app" ]
|
||||
Reference in New Issue
Block a user