-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
49 lines (26 loc) · 1.89 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
########################################################################################################################
FROM node:21-alpine
########################################################################################################################
LABEL maintainer="Jérôme ODIER <[email protected]>"
LABEL maintainer="Fabian LAMBERT <[email protected]>"
LABEL description="AMI Pipeline"
########################################################################################################################
ENV NODE_RED_SECURED="FALSE"
ENV NODE_RED_CREDENTIAL_SECRET=""
########################################################################################################################
RUN ["apk", "add", "--update", "--no-cache", "git"]
########################################################################################################################
COPY package.json /AMIPipeline/package.json
COPY ami-pipeline.js /AMIPipeline/ami-pipeline.js
########################################################################################################################
COPY docker-entrypoint.sh /docker-entrypoint.sh
RUN ["chmod", "a+x", "/docker-entrypoint.sh"]
########################################################################################################################
EXPOSE 1880
########################################################################################################################
VOLUME /AMIPipeline/data/
########################################################################################################################
WORKDIR /AMIPipeline/
########################################################################################################################
ENTRYPOINT ["/docker-entrypoint.sh"]
########################################################################################################################