2023-05-11 16:22:01 +00:00
|
|
|
FROM alpine:3.18.0
|
2022-08-22 16:51:23 +00:00
|
|
|
|
2023-05-12 12:18:48 +00:00
|
|
|
LABEL maintainer="Reckless_Satoshi https://github.com/reckless-satoshi"
|
|
|
|
|
2023-05-14 23:32:44 +00:00
|
|
|
# Needs a copy or symlink of /frontend/static in /nodeapp/static
|
|
|
|
# Github client release workflow copies /frontend/static here
|
|
|
|
|
2022-08-22 16:51:23 +00:00
|
|
|
RUN mkdir -p /usr/src/robosats
|
|
|
|
WORKDIR /usr/src/robosats
|
|
|
|
|
2023-05-12 12:18:48 +00:00
|
|
|
RUN set -x \
|
|
|
|
&& addgroup -g 101 -S nginx \
|
|
|
|
&& adduser -S -D -H -u 101 -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx
|
|
|
|
|
2022-08-22 16:51:23 +00:00
|
|
|
COPY . .
|
2023-05-11 16:22:01 +00:00
|
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
2023-10-27 10:01:59 +00:00
|
|
|
COPY ./coordinators/ /etc/nginx/conf.d/
|
2022-08-22 16:51:23 +00:00
|
|
|
|
2023-05-11 16:22:01 +00:00
|
|
|
RUN apk -U --no-cache upgrade \
|
|
|
|
&& apk --no-cache add socat \
|
|
|
|
&& apk --no-cache add nginx
|
2022-08-22 16:51:23 +00:00
|
|
|
|
|
|
|
EXPOSE 12596
|
2023-03-10 17:02:47 +00:00
|
|
|
HEALTHCHECK CMD curl --fail http://localhost:12596/selfhosted || exit 1
|
2022-08-22 16:51:23 +00:00
|
|
|
|
2023-05-11 16:22:01 +00:00
|
|
|
CMD ["sh", "robosats-client.sh"]
|