budibase/packages/server/Dockerfile

20 lines
440 B
Docker
Raw Normal View History

2020-06-15 18:06:54 +02:00
FROM node:12-alpine
WORKDIR /app
2020-07-06 20:43:40 +02:00
ENV CLOUD=1
2020-07-08 22:53:15 +02:00
ENV COUCH_DB_URL=https://couchdb.budi.live:5984
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 . ./
RUN yarn
2020-06-15 18:06:54 +02:00
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
2020-06-15 18:06:54 +02:00
CMD ["yarn", "run:docker"]