new docker files and readme entry for docker development server

This commit is contained in:
Wieland Schopohl 2020-07-01 15:53:54 +02:00
parent 82251d1cb9
commit f1c5d836ac
5 changed files with 519 additions and 344 deletions

14
Dockerfile-Develop Normal file
View 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