-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 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 |
---|---|---|
|
@@ -19,14 +19,9 @@ LABEL maintainer="Ben Evans <[email protected]>" \ | |
USER root | ||
|
||
# ARG DEBIAN_FRONTEND=noninteractive | ||
# Install system dependencies | ||
ENV TZ="Europe/London" | ||
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata | ||
|
||
# Declare BASE in this build stage (the value is inherited from the global stage) | ||
# https://github.com/moby/moby/issues/34482 | ||
ARG BASE | ||
|
||
# Install system dependencies | ||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
apt-utils \ | ||
|
@@ -39,6 +34,10 @@ RUN apt-get update && \ | |
sudo \ | ||
wget | ||
|
||
# Declare BASE in this build stage (the value is inherited from the global stage) | ||
# https://github.com/moby/moby/issues/34482 | ||
ARG BASE | ||
|
||
# Install the Chaste repo list and key | ||
# https://chaste.github.io/docs/installguides/ubuntu-package/ | ||
RUN sudo wget -O /usr/share/keyrings/chaste.asc https://chaste.github.io/chaste.asc \ | ||
|