-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile-dev-
80 lines (53 loc) · 1.78 KB
/
Dockerfile-dev-
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
73
74
75
76
77
78
79
80
# This file is based on these images:
#
# - https://github.com/OpenFn/Lightning Dockerfile-dev
ARG ELIXIR_VERSION=1.15.4
ARG OTP_VERSION=26.0.2
ARG DEBIAN_VERSION=bookworm-20230612
ARG NODE_VERSION=18.17.1
ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"
FROM ${BUILDER_IMAGE} as dev
ARG NODE_VERSION
# install build and dev dependencies
RUN apt-get update -y && apt-get install -y \
build-essential curl git inotify-tools
# COPY bin/install_node bin/install_node
# Build from local source
RUN git clone https://github.com/OpenFn/Lightning --branch v0.12.2 --depth 1
RUN mv Lightning app
# prepare build dir
WORKDIR /app
RUN bin/install_node ${NODE_VERSION}
RUN apt-get clean && rm -f /var/lib/apt/lists/*_*
# Fixed version
#RUN git checkout 1302484e2f9cb46c0de623ac642ca3d4882d7e62
# Remaining acions are taken directly from https://github.com/OpenFn/Lightning Dockerfile-dev
# install hex + rebar
RUN mix local.hex --force && \
mix local.rebar --force
# set build ENV
ARG MIX_ENV="dev"
ENV MIX_ENV=${MIX_ENV}
# COPY mix.* ./
RUN mix deps.get --only $MIX_ENV
# copy compile-time config files before we compile dependencies
# to ensure any relevant config change will trigger the dependencies
# to be re-compiled.
# COPY config config
RUN mix deps.compile
# COPY priv priv
# COPY lib lib
RUN mix lightning.install_runtime
# COPY bin bin
# COPY assets assets
RUN npm install --prefix assets
ENTRYPOINT ["/app/bin/entrypoint"]
ARG PORT
EXPOSE ${PORT}
CMD ["mix", "phx.server"]
################################################################################
### Seutp specific for openIMIS demo
COPY imisSetupScripts imisSetupScripts
COPY imisSetup.sh imisSetup.sh
RUN chmod u+x imisSetup.sh