Files
caprover/dockerfile-captain.release
T
2019-01-27 11:10:05 -08:00

33 lines
691 B
Plaintext

FROM node:10
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Build backend code
COPY . /usr/src/app
RUN npm install && npm cache clean --force
RUN npm run build
# Build frontend code using a fixed hash commit
ENV FRONTEND_COMMIT_HASH 9cfed38f31be0f8c74ce07d9e835bb47c9d41828
RUN mkdir -p /usr/src/app-frontend && cd /usr/src/app-frontend && \
git clone https://github.com/githubsaturn/caprover-frontend.git && \
cd caprover-frontend && \
git reset --hard ${FRONTEND_COMMIT_HASH} && \
npm install && npm cache clean --force && \
npm run build && \
mv ./build ../../app/dist-frontend
ENV NODE_ENV production
ENV PORT 3000
EXPOSE 3000
CMD ["npm" , "start"]