-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #214 from nmfs-opensci/test
fix problem with texlive installation
- Loading branch information
Showing
2 changed files
with
29 additions
and
12 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 |
---|---|---|
|
@@ -5,7 +5,7 @@ LABEL org.opencontainers.image.author="[email protected]" | |
LABEL org.opencontainers.image.source=https://github.com/nmfs-opensci/py-rocket-base | ||
LABEL org.opencontainers.image.description="Python (3.12), R (4.4.1), Desktop and Publishing tools" | ||
LABEL org.opencontainers.image.licenses=Apache2.0 | ||
LABEL org.opencontainers.image.version=2024.11.24 | ||
LABEL org.opencontainers.image.version=2025.02.05 | ||
|
||
USER root | ||
|
||
|
@@ -17,9 +17,9 @@ ENV REPO_DIR="/srv/repo" \ | |
# The latest rocker will set CRAN to 'latest' but we need a date stamped version for reproducibility | ||
# So pull the latest and use one earlier | ||
ARG R_VERSION_PULL="4.4.2" | ||
ENV LANG=C.UTF-8 | ||
ENV LC_ALL=C.UTF-8 | ||
|
||
ENV LANG=en_US.UTF-8 | ||
ENV LC_ALL=en_US.UTF-8 | ||
# Add NB_USER to staff group (required for rocker script) | ||
# Ensure the staff group exists first | ||
RUN groupadd -f staff && usermod -a -G staff "${NB_USER}" | ||
|
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