new docker files and readme entry for docker development server
This commit is contained in:
parent
82251d1cb9
commit
f1c5d836ac
5 changed files with 519 additions and 344 deletions
14
Dockerfile-Develop
Normal file
14
Dockerfile-Develop
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Final Develop Image
|
||||
FROM node:10-alpine
|
||||
|
||||
WORKDIR /app/
|
||||
|
||||
# Install system dependencies
|
||||
RUN set -ex; \
|
||||
apk add --update --no-cache \
|
||||
make gcc g++ git python pwgen netcat-openbsd bash imagemagick
|
||||
|
||||
EXPOSE 3000 3003 3004
|
||||
|
||||
# Keep container running, so you can access it
|
||||
CMD tail -f /dev/null
|
Loading…
Add table
Add a link
Reference in a new issue