mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
2.5 KiB
100 lines
2.5 KiB
FROM golang:alpine3.14 as lt |
|
|
|
WORKDIR /usr/src/ |
|
|
|
RUN apk add --no-cache git make musl-dev gcc |
|
|
|
# build litestream |
|
RUN git clone https://github.com/benbjohnson/litestream.git litestream |
|
RUN cd litestream ; go install ./cmd/litestream |
|
|
|
RUN cp $GOPATH/bin/litestream /usr/src/lt |
|
|
|
|
|
|
|
FROM node:12 as builder |
|
WORKDIR /usr/src/app |
|
|
|
# Copy application dependency manifests to the container image. |
|
# A wildcard is used to ensure both package.json AND package-lock.json are copied. |
|
# Copying this separately prevents re-running npm ci on every code change. |
|
COPY ./package*.json ./ |
|
COPY ./docker/main.js ./docker/main.js |
|
#COPY ./docker/start.sh /usr/src/appEntry/start.sh |
|
COPY ./docker/start-litestream.sh /usr/src/appEntry/start.sh |
|
# install production dependencies, |
|
# reduce node_module size with modclean & removing sqlite deps, |
|
# package built code into app.tar.gz & add execute permission to start.sh |
|
RUN npm ci --production --quiet |
|
RUN npx modclean --patterns="default:*" --ignore="nc-lib-gui/**,dayjs/**,express-status-monitor/**" --run |
|
RUN rm -rf ./node_modules/sqlite3/deps |
|
RUN tar -czf ../appEntry/app.tar.gz ./* |
|
RUN chmod +x /usr/src/appEntry/start.sh |
|
|
|
|
|
|
|
|
|
FROM alpine:3.14 |
|
|
|
#ENV AWS_ACCESS_KEY_ID= |
|
#ENV AWS_SECRET_ACCESS_KEY= |
|
#ENV AWS_BUCKET= |
|
|
|
|
|
|
|
#WORKDIR /usr/src/ |
|
# |
|
## Install go lang |
|
#RUN apk add --no-cache git make musl-dev go |
|
# |
|
## Configure Go |
|
#ENV GOROOT /usr/lib/go |
|
#ENV GOPATH /go |
|
#ENV PATH /go/bin:$PATH |
|
# |
|
#RUN mkdir -p ${GOPATH}/src ${GOPATH}/bin |
|
# |
|
## build litestream |
|
# |
|
#RUN git clone https://github.com/benbjohnson/litestream.git litestream |
|
#RUN cd litestream ; go install ./cmd/litestream |
|
|
|
|
|
# Bug fix for segfault ( Convert PT_GNU_STACK program header into PT_PAX_FLAGS ) |
|
#RUN apk --update --no-cache add paxctl \ |
|
# && paxctl -cm $(which node) |
|
|
|
WORKDIR /usr/src/app |
|
|
|
ENV NC_DOCKER 0.6 |
|
ENV PORT 8080 |
|
ENV NC_TOOL_DIR=/usr/app/data/ |
|
|
|
|
|
# Copy application dependency manifests to the container image. |
|
# A wildcard is used to ensure both package.json AND package-lock.json are copied. |
|
# Copying this separately prevents re-running npm install on every code change. |
|
#COPY ./build/ ./build/ |
|
#COPY ./docker/main.js ./docker/main.js |
|
#COPY ./package.json ./ |
|
|
|
RUN apk --update --no-cache add \ |
|
nodejs \ |
|
tar |
|
|
|
# Copy litestream binary build |
|
COPY --from=lt /usr/src/lt /usr/src/appEntry/litestream |
|
# Copy packaged production code & main entry file |
|
COPY --from=builder /usr/src/appEntry/ /usr/src/appEntry/ |
|
|
|
|
|
# Run the web service on container startup. |
|
#CMD [ "node", "docker/index.js" ] |
|
ENTRYPOINT ["sh", "/usr/src/appEntry/start.sh"] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|