-
-
Notifications
You must be signed in to change notification settings - Fork 397
/
Dockerfile
47 lines (30 loc) · 981 Bytes
/
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
FROM node:20.15
WORKDIR /usr/src/frontend
# Skip Cypress Install
ENV CYPRESS_INSTALL_BINARY 0
# Install dependencies first
COPY package*.json ./
RUN npm install --unsafe-perm
COPY . .
ARG PORT=3000
ENV PORT $PORT
ARG NODE_ENV=production
ENV NODE_ENV $NODE_ENV
ARG API_URL=https://api-staging.opencollective.com
ENV API_URL $API_URL
ARG INTERNAL_API_URL=https://api-staging-direct.opencollective.com
ENV INTERNAL_API_URL $INTERNAL_API_URL
ARG IMAGES_URL=https://images-staging.opencollective.com
ENV IMAGES_URL $IMAGES_URL
ARG PDF_SERVICE_URL=https://pdf-staging.opencollective.com
ENV PDF_SERVICE_URL $PDF_SERVICE_URL
ARG NEXT_PDF_SERVICE_URL=https://next-pdf.opencollective.com
ENV NEXT_PDF_SERVICE_URL $NEXT_PDF_SERVICE_URL
ARG ML_SERVICE_URL=https://ml.opencollective.com
ENV ML_SERVICE_URL $ML_SERVICE_URL
ARG API_KEY=09u624Pc9F47zoGLlkg1TBSbOl2ydSAq
ENV API_KEY $API_KEY
RUN npm run build
RUN npm prune --production
EXPOSE $PORT
CMD [ "npm", "run", "start" ]