WIP: Add Dockerfile for containerization
#21
Closed
are0h wants to merge 2 commits from refs/pull/21/head
into develop
@ -0,0 +1,18 @@
|
|||||||
|
FROM node:latest
|
||||||
|
|
||||||
|
COPY . /opt/fipamo
|
||||||
|
WORKDIR /opt/fipamo
|
||||||
|
|
||||||
|
RUN npm install pm2 -g \
|
||||||
|
&& npm install .
|
||||||
|
|
||||||
|
EXPOSE 2314
|
||||||
|
|
||||||
|
VOLUME /opt/fipamo/public
|
||||||
|
VOLUME /opt/fipamo/content
|
||||||
|
VOLUME /opt/fipamo/site
|
||||||
|
VOLUME /opt/fipamo/config.json
|
||||||
|
VOLUME /opt/fipamo/site-settings.json
|
||||||
|
|
||||||
|
ENTRYPOINT ["/usr/local/bin/npm"]
|
||||||
|
CMD ["start", "--", "--no-daemon"]
|
Loading…
Reference in New Issue