You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
414 B
23 lines
414 B
FROM python:3.6.6 |
|
|
|
RUN apt-get install curl \ |
|
bash \ |
|
gnupg \ |
|
make \ |
|
g++ \ |
|
&& curl -sL https://deb.nodesource.com/setup_8.x | bash - \ |
|
&& apt-get update \ |
|
&& apt-get install nodejs |
|
|
|
VOLUME [ "/var/www/data" ] |
|
|
|
COPY . /var/www |
|
|
|
WORKDIR /var/www/server |
|
|
|
RUN npm install |
|
RUN npm run build |
|
|
|
ENV INSIDE_DOCKER true |
|
|
|
CMD ["npm", "start"]
|
|
|