archon-electron/Dockerfile

27 lines
643 B
Docker
Raw Permalink Normal View History

# This Dockerfile was created merely to build the app through CI. It might work
# for local builds, but is not guaranteed.
# build the app with Node.js version 16
FROM node:16
# set working directory of the build
WORKDIR /usr/src/app
# install dependencies
RUN apt update && \
apt install -y ruby ruby-dev rpm && \
gem install sass
# make sure node_modules and public exist so we can ensure it's own by the right user
RUN mkdir /usr/src/app/{node_modules,public}
2022-05-22 13:20:10 -04:00
RUN chown -R node /usr/src/app
USER node
2022-05-22 13:23:18 -04:00
RUN npm -g config set user root
2022-05-22 13:23:54 -04:00
RUN npm config set user root
2022-05-22 13:22:56 -04:00
VOLUME /usr/src/app/node_modules
VOLUME /usr/src/app/public