Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 29/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.10-bullseye@sha256:185e2ac3e0892c6cf00b12a5f4301379e1235c65accd7a4837d7e22a9e830e9e as supercronic

Check warning on line 1 in 29/Dockerfile

View workflow job for this annotation

GitHub Actions / nextcloud_29

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

# renovate: datasource=github-tags depName=aptible/supercronic versioning=semver
ENV SUPERCRONIC_VERSION v0.2.33

Check warning on line 4 in 29/Dockerfile

View workflow job for this annotation

GitHub Actions / nextcloud_29

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
Expand All @@ -10,13 +10,13 @@
go install;


FROM nextcloud:29.0.16-fpm@sha256:dbacb6b39389cd866f75c920a3da8961f75d05bd5893d56656ff89839ac6d179
FROM nextcloud:29.0.16-fpm@sha256:0c2a3d7f6ba032e8292c6b65e88dced7a734b2d9fc686b1424f352eb31893382

COPY --from=supercronic /go/bin/supercronic /usr/local/bin/supercronic

ENV PHP_MEMORY_LIMIT 4048M

Check warning on line 17 in 29/Dockerfile

View workflow job for this annotation

GitHub Actions / nextcloud_29

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV PHP_UPLOAD_LIMIT 16G

Check warning on line 18 in 29/Dockerfile

View workflow job for this annotation

GitHub Actions / nextcloud_29

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV PHP_EXECUTION_TIME 3600

Check warning on line 19 in 29/Dockerfile

View workflow job for this annotation

GitHub Actions / nextcloud_29

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN set -ex; \
\
Expand Down
Loading