2021-04-09 08:39:53 -07:00
|
|
|
# Create a Dockerized API server
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
#IMAGE BUILD COMMANDS
|
|
|
|
|
# ct-base-ubuntu = ubuntu 18.04 + nodejs v10 LTS
|
2021-10-11 13:48:20 -07:00
|
|
|
#FROM christroutner/ct-base-ubuntu
|
|
|
|
|
FROM ubuntu:20.04
|
2021-04-09 08:39:53 -07:00
|
|
|
MAINTAINER Chris Troutner <chris.troutner@gmail.com>
|
|
|
|
|
|
2021-10-11 13:48:20 -07:00
|
|
|
#Update the OS and install any OS packages needed.
|
|
|
|
|
RUN apt-get update
|
|
|
|
|
RUN apt-get install -y sudo git curl nano gnupg wget
|
|
|
|
|
|
|
|
|
|
#Install Node and NPM
|
2022-05-16 12:30:58 -07:00
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_16.x -o nodesource_setup.sh
|
2021-10-11 13:48:20 -07:00
|
|
|
RUN bash nodesource_setup.sh
|
|
|
|
|
RUN apt-get install -y nodejs build-essential
|
|
|
|
|
|
2021-04-09 08:39:53 -07:00
|
|
|
#Create the user 'safeuser' and add them to the sudo group.
|
|
|
|
|
#RUN useradd -ms /bin/bash safeuser
|
|
|
|
|
#RUN adduser safeuser sudo
|
|
|
|
|
|
|
|
|
|
#Set password to 'password' change value below if you want a different password
|
|
|
|
|
#RUN echo safeuser:password | chpasswd
|
|
|
|
|
|
|
|
|
|
#Set the working directory to be the home directory
|
|
|
|
|
WORKDIR /home/safeuser
|
|
|
|
|
|
|
|
|
|
#Setup NPM for non-root global install
|
|
|
|
|
#RUN mkdir /home/safeuser/.npm-global
|
|
|
|
|
#RUN chown -R safeuser .npm-global
|
|
|
|
|
#RUN echo "export PATH=~/.npm-global/bin:$PATH" >> /home/safeuser/.profile
|
|
|
|
|
#RUN runuser -l safeuser -c "npm config set prefix '~/.npm-global'"
|
|
|
|
|
|
2021-10-11 13:48:20 -07:00
|
|
|
# Update to the latest version of npm.
|
2021-12-29 17:46:05 -08:00
|
|
|
#RUN npm install -g npm@7.23.0
|
2023-10-28 11:24:40 -07:00
|
|
|
#RUN npm install -g npm
|
2021-10-11 13:48:20 -07:00
|
|
|
|
|
|
|
|
# npm mirror to prevent direct dependency on npm.
|
|
|
|
|
RUN npm set registry http://94.130.170.209:4873/
|
|
|
|
|
|
2021-04-09 08:39:53 -07:00
|
|
|
# Switch to user account.
|
2021-08-26 10:53:53 -07:00
|
|
|
#USER safeuser
|
2021-04-09 08:39:53 -07:00
|
|
|
# Prep 'sudo' commands.
|
2021-08-26 10:53:53 -07:00
|
|
|
#RUN echo 'abcd8765' | sudo -S pwd
|
2021-04-09 08:39:53 -07:00
|
|
|
|
|
|
|
|
# Clone the rest.bitcoin.com repository
|
|
|
|
|
WORKDIR /home/safeuser
|
2021-08-26 08:54:33 -07:00
|
|
|
RUN git clone https://github.com/Permissionless-Software-Foundation/ipfs-service-provider
|
2021-04-09 08:39:53 -07:00
|
|
|
|
|
|
|
|
# Switch to the desired branch. `master` is usually stable,
|
|
|
|
|
# and `stage` has the most up-to-date changes.
|
2021-08-26 08:54:33 -07:00
|
|
|
WORKDIR /home/safeuser/ipfs-service-provider
|
2021-04-09 08:39:53 -07:00
|
|
|
|
|
|
|
|
# For development: switch to unstable branch
|
2024-01-28 19:38:42 -08:00
|
|
|
RUN git checkout ct-unstable
|
2021-04-09 08:39:53 -07:00
|
|
|
|
|
|
|
|
# Install dependencies
|
2021-08-26 10:53:53 -07:00
|
|
|
#RUN mkdir .ipfsdata
|
2021-09-28 18:04:52 -07:00
|
|
|
#RUN npm install -g @mapbox/node-pre-gyp
|
2021-04-09 08:39:53 -07:00
|
|
|
RUN npm install
|
|
|
|
|
|
|
|
|
|
# Generate the API docs
|
|
|
|
|
RUN npm run docs
|
|
|
|
|
|
|
|
|
|
VOLUME /home/safeuser/keys
|
|
|
|
|
|
|
|
|
|
# Expose the port the API will be served on.
|
2021-12-29 17:46:05 -08:00
|
|
|
EXPOSE 5010
|
2021-04-09 08:39:53 -07:00
|
|
|
|
|
|
|
|
# Start the application.
|
2022-07-25 17:56:02 -07:00
|
|
|
#COPY start-production.sh start-production.sh
|
2021-08-27 15:41:33 -07:00
|
|
|
CMD ["./start-production.sh"]
|
2021-04-09 08:39:53 -07:00
|
|
|
|
|
|
|
|
#CMD ["npm", "start"]
|