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
set constantshow | |
include "/usr/share/nano/*.nanorc" |
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
FROM python:3.6-slim | |
# install node | |
RUN apt-get -y update | |
RUN apt-get -y install curl | |
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash | |
RUN apt-get -y install nodejs | |
WORKDIR /app |