1
0
Fork 0
mirror of synced 2024-05-23 05:44:18 +12:00
budibase/hosting/single/Dockerfile

150 lines
4.4 KiB
Docker
Raw Normal View History

FROM node:14-slim as build
# install node-gyp dependencies
2022-06-23 00:57:46 +12:00
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends apt-utils cron g++ make python
# add pin script
WORKDIR /
ADD scripts/pinVersions.js scripts/cleanup.sh ./
RUN chmod +x /cleanup.sh
# build server
WORKDIR /app
ADD packages/server .
RUN node /pinVersions.js && yarn && yarn build && /cleanup.sh
# build worker
WORKDIR /worker
ADD packages/worker .
RUN node /pinVersions.js && yarn && yarn build && /cleanup.sh
FROM couchdb:3.2.1
2022-06-25 04:48:34 +12:00
# TARGETARCH can be amd64 or arm e.g. docker build --build-arg TARGETARCH=amd64
2022-06-22 23:40:33 +12:00
ARG TARGETARCH amd64
2022-06-25 04:48:34 +12:00
#TARGETBUILD can be set to single (for single docker image) or aas (for azure app service)
# e.g. docker build --build-arg TARGETBUILD=aas ....
ARG TARGETBUILD single
ENV TARGETBUILD $TARGETBUILD
COPY --from=build /app /app
COPY --from=build /worker /worker
2022-06-23 00:38:33 +12:00
ENV \
APP_PORT=4001 \
ARCHITECTURE=amd \
BUDIBASE_ENVIRONMENT=PRODUCTION \
CLUSTER_PORT=80 \
2022-06-24 02:03:09 +12:00
# CUSTOM_DOMAIN=budi001.custom.com \
2022-06-23 00:38:33 +12:00
DEPLOYMENT_ENVIRONMENT=docker \
MINIO_URL=http://localhost:9000 \
POSTHOG_TOKEN=phc_fg5I3nDOf6oJVMHSaycEhpPdlgS8rzXG2r6F2IpxCHS \
REDIS_URL=localhost:6379 \
SELF_HOSTED=1 \
2022-06-25 04:48:34 +12:00
TARGETBUILD=$TARGETBUILD \
2022-06-23 00:38:33 +12:00
WORKER_PORT=4002 \
2022-07-07 03:33:40 +12:00
WORKER_URL=http://localhost:4002 \
APPS_URL=http://localhost:4001
2022-04-01 13:00:52 +13:00
# These secret env variables are generated by the runner at startup
# their values can be overriden by the user, they will be written
# to the .env file in the /data directory for use later on
# REDIS_PASSWORD=budibase \
# COUCHDB_PASSWORD=budibase \
# COUCHDB_USER=budibase \
# COUCH_DB_URL=http://budibase:budibase@localhost:5984 \
# INTERNAL_API_KEY=budibase \
# JWT_SECRET=testsecret \
# MINIO_ACCESS_KEY=budibase \
# MINIO_SECRET_KEY=budibase \
# install base dependencies
RUN apt-get update && \
apt-get install -y software-properties-common wget nginx uuid-runtime && \
apt-add-repository 'deb http://security.debian.org/debian-security stretch/updates main' && \
apt-get update
# install other dependencies, nodejs, oracle requirements, jdk8, redis, nginx
WORKDIR /nodejs
RUN curl -sL https://deb.nodesource.com/setup_16.x -o /tmp/nodesource_setup.sh && \
bash /tmp/nodesource_setup.sh && \
2022-06-23 00:38:33 +12:00
apt-get install -y libaio1 nodejs nginx openjdk-8-jdk redis-server unzip && \
npm install --global yarn pm2
2022-04-01 13:00:52 +13:00
2022-04-05 22:33:55 +12:00
# setup nginx
ADD hosting/single/nginx/nginx.conf /etc/nginx
ADD hosting/single/nginx/nginx-default-site.conf /etc/nginx/sites-enabled/default
2022-06-23 00:38:33 +12:00
RUN mkdir -p /var/log/nginx && \
touch /var/log/nginx/error.log && \
touch /var/run/nginx.pid
2022-04-01 13:00:52 +13:00
WORKDIR /
RUN mkdir -p scripts/integrations/oracle
ADD packages/server/scripts/integrations/oracle scripts/integrations/oracle
RUN /bin/bash -e ./scripts/integrations/oracle/instantclient/linux/install.sh
2022-04-01 13:00:52 +13:00
# setup clouseau
WORKDIR /
RUN wget https://github.com/cloudant-labs/clouseau/releases/download/2.21.0/clouseau-2.21.0-dist.zip && \
unzip clouseau-2.21.0-dist.zip && \
mv clouseau-2.21.0 /opt/clouseau && \
rm clouseau-2.21.0-dist.zip
2022-04-01 13:00:52 +13:00
WORKDIR /opt/clouseau
RUN mkdir ./bin
ADD hosting/single/clouseau/clouseau ./bin/
ADD hosting/single/clouseau/log4j.properties hosting/single/clouseau/clouseau.ini ./
2022-04-01 13:00:52 +13:00
RUN chmod +x ./bin/clouseau
# setup CouchDB
WORKDIR /opt/couchdb
ADD hosting/single/couch/vm.args hosting/single/couch/local.ini ./etc/
2022-04-01 13:00:52 +13:00
# setup minio
WORKDIR /minio
2022-06-22 23:40:33 +12:00
ADD scripts/install-minio.sh ./install.sh
RUN chmod +x install.sh && ./install.sh
2022-04-01 13:00:52 +13:00
2022-04-05 22:33:55 +12:00
# setup runner file
2022-04-01 13:00:52 +13:00
WORKDIR /
ADD hosting/single/runner.sh .
RUN chmod +x ./runner.sh
2022-06-23 00:38:33 +12:00
ADD hosting/scripts/healthcheck.sh .
RUN chmod +x ./healthcheck.sh
2022-04-01 13:00:52 +13:00
2022-06-25 04:48:34 +12:00
ADD hosting/scripts/build-target-paths.sh .
RUN chmod +x ./build-target-paths.sh
# For Azure App Service install SSH & point data locations to /home
RUN /build-target-paths.sh
# cleanup cache
RUN yarn cache clean -f
2022-06-23 00:38:33 +12:00
EXPOSE 80
EXPOSE 443
2022-04-02 00:50:26 +13:00
VOLUME /opt/couchdb/data
VOLUME /minio
2022-04-01 13:00:52 +13:00
2022-06-23 00:38:33 +12:00
# setup letsencrypt certificate
RUN apt-get install -y certbot python3-certbot-nginx
ADD hosting/letsencrypt /app/letsencrypt
RUN chmod +x /app/letsencrypt/certificate-request.sh /app/letsencrypt/certificate-renew.sh
# Remove cached files
RUN rm -rf \
/root/.cache \
/root/.npm \
/root/.pip \
/usr/local/share/doc \
/usr/share/doc \
/usr/share/man \
/var/lib/apt/lists/* \
/tmp/*
HEALTHCHECK --interval=15s --timeout=15s --start-period=45s CMD "/healthcheck.sh"
2022-04-01 13:00:52 +13:00
# must set this just before running
ENV NODE_ENV=production
WORKDIR /
2022-04-01 13:00:52 +13:00
CMD ["./runner.sh"]