1
0
Fork 0
mirror of https://github.com/SunRed/haste-server.git synced 2025-09-06 13:20:15 +02:00

Add basic Docker image

This commit is contained in:
Niek Candaele 2020-09-22 20:18:02 +02:00
parent d2c5641886
commit 0f01dc4d55
3 changed files with 40 additions and 0 deletions

23
Dockerfile Normal file
View file

@ -0,0 +1,23 @@
FROM node:lts-alpine
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . .
RUN npm run build
RUN npm install redis@0.8.1 && \
npm install pg@4.1.1 && \
npm install memcached@2.2.2 && \
npm install aws-sdk@2.738.0 && \
npm install rethinkdbdash@2.3.31
ENV HOST 0.0.0.0
EXPOSE 7777
STOPSIGNAL SIGINT
ENTRYPOINT [ "node", "server.js" ]
CMD ["npm", "start"]