Skip to content

Commit

Permalink
elm: update Dockerfile to ubuntu:24.04.
Browse files Browse the repository at this point in the history
Add DEBIAN_FRONTEND=noninteractive to bypass tzdata interactive query.
  • Loading branch information
kanaka committed Aug 6, 2024
1 parent e984ed8 commit f172407
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions impls/elm/Dockerfile
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]>

##########################################################
Expand All @@ -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
Expand All @@ -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

0 comments on commit f172407

Please sign in to comment.