This repository has been archived by the owner on Nov 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore rule to force setting specific package versions since - Ubuntu should only be receiving non-breaking patches, - we don't want the overhead of having to follow up on every package upgrade manually (see dependabot/dependabot-core#2129), and - locking only the top level packages means we'd still get arbitrary versions of their dependencies.
- Loading branch information
Showing
6 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
ignored: | ||
- DL3008 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
FROM ubuntu:20.04 | ||
ENV DEBIAN_FRONTEND noninteractive | ||
RUN apt update && apt install -y python3 && rm -rf /var/lib/apt/lists/* | ||
RUN apt-get update \ | ||
&& apt-get install --assume-yes --no-install-recommends python3 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
COPY datalake/backend/processing/check_files_checksums/task.py /opt/task.py | ||
RUN chmod +x /opt/task.py | ||
ENTRYPOINT ["/opt/task.py"] |
4 changes: 3 additions & 1 deletion
4
datalake/backend/processing/check_flat_directory_structure/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
FROM ubuntu:20.04 | ||
ENV DEBIAN_FRONTEND noninteractive | ||
RUN apt update && apt install -y python3 && rm -rf /var/lib/apt/lists/* | ||
RUN apt-get update \ | ||
&& apt-get install --assume-yes --no-install-recommends python3 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
COPY datalake/backend/processing/check_flat_directory_structure/task.py /opt/task.py | ||
RUN chmod +x /opt/task.py | ||
ENTRYPOINT ["/opt/task.py"] |
15 changes: 11 additions & 4 deletions
15
datalake/backend/processing/check_stac_metadata/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.