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 30/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.10-bullseye@sha256:05ed4a0dad540eaf289072132678452ec19fa99481658be4813bff6250fedcee as supercronic

Check warning on line 1 in 30/Dockerfile

View workflow job for this annotation

GitHub Actions / nextcloud_30

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 30/Dockerfile

View workflow job for this annotation

GitHub Actions / nextcloud_30

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:30.0.12-fpm@sha256:1f5bc9bde070faad6132061a1b2046ad35461bf59e391ccebfcd04258639fea6
FROM nextcloud:30.0.12-fpm@sha256:c6c1260d9111b40846ccec2e0acebcec604fc5f8e7f9922dbe5ef8ba075aaddb

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

ENV PHP_MEMORY_LIMIT 4048M

Check warning on line 17 in 30/Dockerfile

View workflow job for this annotation

GitHub Actions / nextcloud_30

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 30/Dockerfile

View workflow job for this annotation

GitHub Actions / nextcloud_30

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 30/Dockerfile

View workflow job for this annotation

GitHub Actions / nextcloud_30

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