mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
24 lines
623 B
Docker
24 lines
623 B
Docker
FROM alpine:3.18.0
|
|
|
|
LABEL maintainer="Reckless_Satoshi https://github.com/reckless-satoshi"
|
|
|
|
# Needs a copy or symlink of /frontend/static in /nodeapp/static
|
|
# Github client release workflow copies /frontend/static here
|
|
|
|
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 nginx
|
|
|
|
EXPOSE 80
|
|
HEALTHCHECK CMD curl --fail http://localhost:80 || exit 1
|
|
|
|
CMD ["sh", "run.sh"] |