2020-06-15 18:06:54 +02:00
|
|
|
FROM node:12-alpine
|
|
|
|
|
2021-07-29 21:32:18 +02:00
|
|
|
LABEL com.centurylinklabs.watchtower.lifecycle.pre-check="scripts/watchtower-hooks/pre-check.sh"
|
|
|
|
LABEL com.centurylinklabs.watchtower.lifecycle.pre-update="scripts/watchtower-hooks/pre-update.sh"
|
|
|
|
LABEL com.centurylinklabs.watchtower.lifecycle.post-update="scripts/watchtower-hooks/post-update.sh"
|
|
|
|
LABEL com.centurylinklabs.watchtower.lifecycle.post-check="scripts/watchtower-hooks/post-check.sh"
|
|
|
|
|
2020-06-15 18:06:54 +02:00
|
|
|
WORKDIR /app
|
|
|
|
|
2021-02-25 14:27:46 +01:00
|
|
|
ENV PORT=4001
|
2020-07-08 22:53:15 +02:00
|
|
|
ENV COUCH_DB_URL=https://couchdb.budi.live:5984
|
2020-12-11 17:38:40 +01:00
|
|
|
ENV BUDIBASE_ENVIRONMENT=PRODUCTION
|
2020-07-06 20:43:40 +02:00
|
|
|
|
2020-06-15 18:06:54 +02:00
|
|
|
# copy files and install dependencies
|
|
|
|
COPY . ./
|
2020-12-11 17:38:40 +01:00
|
|
|
RUN yarn
|
2021-06-24 19:16:48 +02:00
|
|
|
RUN yarn build
|
2020-06-15 18:06:54 +02:00
|
|
|
|
|
|
|
EXPOSE 4001
|
|
|
|
|
2020-12-11 17:38:40 +01:00
|
|
|
# have to add node environment production after install
|
|
|
|
# due to this causing yarn to stop installing dev dependencies
|
|
|
|
# which are actually needed to get this environment up and running
|
|
|
|
ENV NODE_ENV=production
|
2020-06-15 18:06:54 +02:00
|
|
|
CMD ["yarn", "run:docker"]
|