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
371 B
23 lines
371 B
FROM alpine:3.8 |
|
|
|
EXPOSE 8000 |
|
|
|
VOLUME [ "/var/www/data" ] |
|
|
|
COPY server config /var/www |
|
|
|
WORKDIR /var/www/server |
|
|
|
#RUN apt-get update && apt-get install -y \ |
|
# gnupg \ |
|
# curl \ |
|
# make \ |
|
# g++ |
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && |
|
apt-get update && |
|
apt-get install -y nodejs && |
|
npm install && |
|
npm run build |
|
|
|
CMD ["npm", "start"]
|
|
|