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.12-bullseye@sha256:161b8513c09cbfa4c174fd32e46eddc5eddf487a43958b9cf8b07d628e9e0f85 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.17-fpm@sha256:762b551395346dc02e98fa58c134883755d84db13d2e63fc0547b6b45b66f76f
FROM nextcloud:30.0.17-fpm@sha256:66b59b33a7af2ef25feff7dd1ad6d2d2e522689abcac3bdc108aacfd8a57c64a

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