diff --git a/examples/libreoffice/Dockerfile b/examples/libreoffice/Dockerfile index d3b518b..fee75bb 100644 --- a/examples/libreoffice/Dockerfile +++ b/examples/libreoffice/Dockerfile @@ -3,7 +3,7 @@ ARG DOCKER_REPOSITORY=local FROM ${DOCKER_REPOSITORY}/scyllaridae:${TAG} AS scyllaridae COPY scyllaridae.yml /app/ -COPY docker-entrypoint.sh /app/ +COPY cmd.sh /app/ RUN apk update && \ apk add --no-cache \ diff --git a/examples/libreoffice/docker-entrypoint.sh b/examples/libreoffice/cmd.sh similarity index 100% rename from examples/libreoffice/docker-entrypoint.sh rename to examples/libreoffice/cmd.sh diff --git a/examples/libreoffice/scyllaridae.yml b/examples/libreoffice/scyllaridae.yml index c56a60e..190c4dc 100644 --- a/examples/libreoffice/scyllaridae.yml +++ b/examples/libreoffice/scyllaridae.yml @@ -7,4 +7,4 @@ allowedMimeTypes: - "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" cmdByMimeType: default: - cmd: /app/docker-entrypoint.sh + cmd: /app/cmd.sh