-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
72 lines (38 loc) · 2.05 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#14.06.2020, 17:11 Uhr
#dieses Dockerfile baut einen individuellen Node.JS, der fuer mich zum Programmieren gut geeignet ist
#evt den Pfad zu der requirements-txt als ARGUMENT uebergeben? oder mit COPY alle Dateien aus aktuellem Verzeichnis inkl. requirements-txt kopieren
#see https://kis5.geoinformation.htw-dresden.de/gitlab/gi/es-project-template
FROM ubuntu:latest
#ubuntu is required!
#eventuell anstelle ubuntu ein alpine linux verwenden, da es nur 5MB an Speicher braucht
LABEL version="1.0" maintainer="Theodor Rieche <[email protected]>"
#how could I improve labelling also for columns TAG and REPOSITORY in list of "sudo docker images"?
#++++++++++ install nodejs ++++++++++
RUN apt update
RUN apt install -y nodejs
RUN apt install -y npm
#++++++++++ ES project template einrichten , siehe Link auf kis5.server ++++++++++
# das Template mit allen Verzeichnissen und Daten importieren!
RUN mkdir /code
#copy all files from current dir to /code within container
COPY . /code
#working directory
WORKDIR /code
RUN npm install -g npm@latest
#Starten des Development-Servers
#RUN npm run-script start
#Linten des Quellcodes
#RUN npm run-script lint
#Erstellen eines Production-Builds
#RUN npm run-script build
#++++++++++++++++++++++++++++++++++
# ol bootstrap es-abstract framework7 jquery bundle
RUN npm install -y jquery && npm install -y [email protected] && npm install -y ol && npm install -y bootstrap && npm install -y framework7 && npm install -y npm-bundle
#++++++++++install required modules for Node JS programming. read from textfile++++++++++
#++++++++++ structure of image / container’s file system ++++++++++
#VOLUME /code
#EXPOSE 8888
# an USER denken, damit später nicht root rechte genutzt werden
# spaeter dann gleich mit COPY oder ADD alle SourceCode-Dateien beim Erstellen in den Container kopieren... .dockerignore nutzen
# !!!!!!!!am Ende den Container noch mit sudo docker start starten ?
# wie kann man ihn sofort auf "Up" setzen, nicht dass er gleich "Exited" ist