Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile to resolve errors #46

Merged
merged 3 commits into from
Aug 26, 2024
Merged
Changes from 1 commit
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
7 changes: 4 additions & 3 deletions update_metadata_bdc/v1.0.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ LABEL about.tags="RMIP"
#----------------------------------------------------------------
# Install required command line tools and packages
#----------------------------------------------------------------
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
ENV DEBIAN_FRONTEND noninteractive
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
ENV DEBIAN_FRONTEND=noninteractive
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://gist.github.com/jaamarks/e2c5c3c465b532e1610edc37d5649e93

Please review the above gist and implement the necessary changes.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

variable changed based on recommendations in gist


RUN apt-get -qq update && apt-get -y upgrade && \
apt-get install -y --no-install-recommends \
Expand All @@ -30,7 +31,7 @@ RUN apt-get -qq update && apt-get -y upgrade && \
libxml2-dev \
build-essential && \
apt-get clean && \
apt-get autoremove
apt-get -y autoremove

#----------------------------------------------------------------
# Install R Packages
Expand Down