-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
elm: update Dockerfile to ubuntu:24.04.
Add DEBIAN_FRONTEND=noninteractive to bypass tzdata interactive query.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:20.04 | ||
FROM ubuntu:24.04 | ||
MAINTAINER Joel Martin <[email protected]> | ||
|
||
########################################################## | ||
|
@@ -10,7 +10,7 @@ RUN apt-get -y update | |
|
||
# Required for running tests | ||
RUN apt-get -y install make python3 | ||
RUN ln -s /usr/bin/python3 /usr/local/bin/python | ||
RUN ln -fs /usr/bin/python3 /usr/local/bin/python | ||
|
||
RUN mkdir -p /mal | ||
WORKDIR /mal | ||
|
@@ -19,7 +19,7 @@ WORKDIR /mal | |
# Specific implementation requirements | ||
########################################################## | ||
|
||
RUN apt-get -y install g++ libreadline-dev npm | ||
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install g++ libreadline-dev nodejs npm | ||
|
||
ENV HOME /mal | ||
ENV NPM_CONFIG_CACHE /mal/.npm |