robosats/nodeapp/Dockerfile
2023-05-12 05:18:48 -07:00

22 lines
558 B
Docker

FROM alpine:3.18.0
LABEL maintainer="Reckless_Satoshi https://github.com/reckless-satoshi"
RUN mkdir -p /usr/src/robosats
WORKDIR /usr/src/robosats
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
COPY . .
COPY ./nginx.conf /etc/nginx/nginx.conf
RUN apk -U --no-cache upgrade \
&& apk --no-cache add socat \
&& apk --no-cache add nginx
EXPOSE 12596
HEALTHCHECK CMD curl --fail http://localhost:12596/selfhosted || exit 1
CMD ["sh", "robosats-client.sh"]