Add Dockerfile for containerization #20
1 changed files with 18 additions and 0 deletions
18
Dockerfile
Normal file
18
Dockerfile
Normal file
|
@ -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 a new issue