20 lines
442 B
Docker
20 lines
442 B
Docker
FROM node:12-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
ENV PORT=4001
|
|
ENV COUCH_DB_URL=https://couchdb.budi.live:5984
|
|
ENV BUDIBASE_ENVIRONMENT=PRODUCTION
|
|
|
|
# copy files and install dependencies
|
|
COPY . ./
|
|
RUN yarn
|
|
|
|
EXPOSE 4001
|
|
|
|
# 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
|
|
CMD ["yarn", "run:docker"]
|