-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
34 lines (26 loc) · 1.13 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
###############################################################################################
# THILO API - BASE
###############################################################################################
FROM node:lts as thilo-api-base
# based on https://stackoverflow.com/questions/69394632/webpack-build-failing-with-err-ossl-evp-unsupported
ENV NODE_OPTIONS=--openssl-legacy-provider
RUN mkdir -p /docker
WORKDIR /srv/app
RUN apt-get update
RUN apt-get install dos2unix -y
###############################################################################################
# THILO API - PRODUCTION
###############################################################################################
FROM thilo-api-base as thilo-api-production
COPY ./docker/custom_entrypoint.sh /docker/custom_entrypoint.sh
RUN chmod +x /docker/custom_entrypoint.sh
RUN dos2unix /docker/custom_entrypoint.sh
COPY ./docker/set_env_secrets.sh /docker/set_env_secrets.sh
RUN chmod +x /docker/set_env_secrets.sh
RUN dos2unix /docker/set_env_secrets.sh
# Install strapi
COPY . .
RUN npm install
RUN npm run build
EXPOSE 1337
ENTRYPOINT [ "/docker/custom_entrypoint.sh" ]