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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM wetransform/hale-cli:6.1.4
FROM wetransform/hale-cli:6.1.6
MAINTAINER Simon Templer <simon@wetransform.to>

Check warning on line 2 in Dockerfile

View workflow job for this annotation

GitHub Actions / check / build / run

The MAINTAINER instruction is deprecated, use a label instead to define an image author

MaintainerDeprecated: Maintainer instruction is deprecated in favor of using label More info: https://docs.docker.com/go/dockerfile/rule/maintainer-deprecated/

# add build info - see hooks/build and http://label-schema.org/
# ARG BUILD_DATE
Expand All @@ -12,7 +12,7 @@
USER root

# data directory - not using the base images volume because then the permissions cannot be adapted
ENV DATA_DIR /opt/data

Check warning on line 15 in Dockerfile

View workflow job for this annotation

GitHub Actions / check / build / run

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/

# Install needed utilities and setup folders
RUN apt-get update -y && \
Expand All @@ -33,4 +33,4 @@
# overwrite entrypoint
ENTRYPOINT []

CMD [/hale/bin/hale]

Check warning on line 36 in Dockerfile

View workflow job for this annotation

GitHub Actions / check / build / run

JSON arguments recommended for ENTRYPOINT/CMD to prevent unintended behavior related to OS signals

JSONArgsRecommended: JSON arguments recommended for CMD to prevent unintended behavior related to OS signals More info: https://docs.docker.com/go/dockerfile/rule/json-args-recommended/
Loading