initial commit

This commit is contained in:
2023-09-02 00:08:48 +03:00
commit 61e21e1016
3 changed files with 73 additions and 0 deletions

15
Dockerfile Normal file
View 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" ]