-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
103 lines (86 loc) · 2.91 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# build client
FROM node:10-alpine AS assets
WORKDIR /assets
COPY ./assets /assets
RUN yarn install && yarn build
# build server
FROM elixir:1.10.4-alpine
ARG MIX_ENV=prod
ARG DATABASE_URL=postgres://postgres:postgres:localhost/kikori
ARG SECRET_KEY_BASE=secret
ENV MIX_HOME=/root/.mix
WORKDIR /
RUN apk --no-cache add curl build-base
COPY . /
COPY --from=assets /assets/build /assets/build
RUN mix local.hex --force && mix local.rebar --force && mix do deps.get, compile
CMD mix phx.server
# # The version of Alpine to use for the final image
# # This should match the version of Alpine that the `elixir:1.8.2-alpine` image uses
# ARG ALPINE_VERSION=3.9
# FROM elixir:1.8.2-alpine AS builder
# # The following are build arguments used to change variable parts of the image.
# # The name of your application/release (required)
# ARG APP_NAME=kikori
# # The version of the application we are building (required)
# ARG APP_VSN=0.1.0
# # The environment to build with
# ARG MIX_ENV=prod
# # Set this to true if this release is not a Phoenix app
# ARG SKIP_PHOENIX=false
# # If you are using an umbrella project, you can change this
# # argument to the directory the Phoenix app is in so that the assets
# # can be built
# ARG PHOENIX_SUBDIR=.
# ENV SKIP_PHOENIX=${SKIP_PHOENIX} \
# APP_NAME=${APP_NAME} \
# APP_VSN=${APP_VSN} \
# MIX_ENV=${MIX_ENV}
# # By convention, /opt is typically used for applications
# WORKDIR /opt/app
# # This step installs all the build tools we'll need
# RUN apk update && \
# apk upgrade --no-cache && \
# apk add --no-cache \
# nodejs \
# yarn \
# git \
# build-base && \
# mix local.rebar --force && \
# mix local.hex --force
# # This copies our app source code into the build container
# COPY . .
# RUN mix do deps.get, deps.compile, compile
# # RUN mix ecto.drop && \
# # mix ecto.create && \
# # mix ecto.migrate
# # This step builds assets for the Phoenix app (if there is one)
# # If you aren't building a Phoenix app, pass `--build-arg SKIP_PHOENIX=true`
# # This is mostly here for demonstration purposes
# RUN if [ ! "$SKIP_PHOENIX" = "true" ]; then \
# cd ${PHOENIX_SUBDIR}/assets && \
# yarn install && \
# yarn run build && \
# cd -; \
# mix phx.digest; \
# fi
# RUN \
# mkdir -p /opt/built && \
# mix distillery.release --verbose && \
# cp _build/${MIX_ENV}/rel/${APP_NAME}/releases/${APP_VSN}/${APP_NAME}.tar.gz /opt/built && \
# cd /opt/built && \
# tar -xzf ${APP_NAME}.tar.gz && \
# rm ${APP_NAME}.tar.gz
# # From this line onwards, we're in a new image, which will be the image used in production
# FROM alpine:${ALPINE_VERSION}
# # The name of your application/release (required)
# ARG APP_NAME=kikori
# RUN apk update && \
# apk add --no-cache \
# bash \
# openssl-dev
# ENV REPLACE_OS_VARS=true \
# APP_NAME=${APP_NAME}
# WORKDIR /opt/app
# COPY --from=builder /opt/built .
# CMD trap 'exit' INT; /opt/app/bin/${APP_NAME} foreground