You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
446 B
Plaintext
29 lines
446 B
Plaintext
2 years ago
|
FROM node:16-alpine as build
|
||
|
|
||
|
ENV NETTYPE 0
|
||
|
ENV SERVER_URL http://localhost
|
||
|
ENV APP_NAME MyMonero-Self-Hosted
|
||
|
|
||
|
WORKDIR /srv/mymonero
|
||
|
|
||
|
COPY mymonero-web-js .
|
||
|
|
||
|
RUN adduser \
|
||
|
-S \
|
||
|
-s /bin/ash \
|
||
|
-g 'mymonero' \
|
||
|
-D \
|
||
|
-h /srv/mymonero \
|
||
|
mymonero
|
||
|
RUN chown -R mymonero .
|
||
|
USER mymonero
|
||
|
RUN npm install
|
||
|
RUN npm run build
|
||
|
|
||
|
COPY mymonero-entrypoint.sh .
|
||
|
RUN chmod +x entrypoint.sh
|
||
|
RUN rm .env.defaults
|
||
|
|
||
|
EXPOSE 9110
|
||
|
|
||
|
CMD ["./entrypoint.sh"]
|