Created
August 7, 2021 07:53
-
-
Save mehmetron/36a5a3eaa7fc5ee270060e4e13390553 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
FROM ubuntu:20.04 | |
ENV TZ=Europe/Kiev | |
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | |
RUN apt-get -y update && \ | |
apt-get -y install nano && \ | |
apt-get -y install curl | |
RUN curl "https://nodejs.org/dist/v16.3.0/node-v16.3.0-linux-x64.tar.xz" -o node.tar.xz && \ | |
tar xf node.tar.xz --strip-components=1 | |
#RUN rm node.tar.xz | |
WORKDIR /app | |
CMD ["sleep", "10000"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment