Skip to content

Instantly share code, notes, and snippets.

@mehmetron
Created August 7, 2021 07:53
Show Gist options
  • Save mehmetron/36a5a3eaa7fc5ee270060e4e13390553 to your computer and use it in GitHub Desktop.
Save mehmetron/36a5a3eaa7fc5ee270060e4e13390553 to your computer and use it in GitHub Desktop.
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