mirror of
https://github.com/xmrig/xmrig.git
synced 2025-12-16 19:22:46 -05:00
Compare commits
2 Commits
v6.22.2
...
e15888ff9e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e15888ff9e | ||
|
|
df031be628 |
@@ -1,7 +1,3 @@
|
|||||||
# v6.22.2
|
|
||||||
- [#3569](https://github.com/xmrig/xmrig/pull/3569) Fixed corrupted API output in some rare conditions.
|
|
||||||
- [#3571](https://github.com/xmrig/xmrig/pull/3571) Fixed number of threads on the new Intel Core Ultra CPUs.
|
|
||||||
|
|
||||||
# v6.22.1
|
# v6.22.1
|
||||||
- [#3531](https://github.com/xmrig/xmrig/pull/3531) Always reset nonce on RandomX dataset change.
|
- [#3531](https://github.com/xmrig/xmrig/pull/3531) Always reset nonce on RandomX dataset change.
|
||||||
- [#3534](https://github.com/xmrig/xmrig/pull/3534) Fixed threads auto-config on Zen5.
|
- [#3534](https://github.com/xmrig/xmrig/pull/3534) Fixed threads auto-config on Zen5.
|
||||||
|
|||||||
45
Dockerfile
Normal file
45
Dockerfile
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
# Build in disposable container so run-time container is small
|
||||||
|
FROM alpine:latest as build
|
||||||
|
|
||||||
|
# Build from master by default but allow build time specification
|
||||||
|
ARG ref=master
|
||||||
|
ENV my_ref=$ref
|
||||||
|
|
||||||
|
# Developers may wish to specify an alternate repository for source
|
||||||
|
ARG repo=https://github.com/xmrig/xmrig.git
|
||||||
|
ENV my_repo=$repo
|
||||||
|
|
||||||
|
RUN set -ex && \
|
||||||
|
# testing required for hwloc
|
||||||
|
echo @testing http://nl.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories
|
||||||
|
|
||||||
|
RUN set -ex && \
|
||||||
|
apk --no-cache --update add \
|
||||||
|
coreutils file grep openssl tar binutils \
|
||||||
|
cmake g++ git linux-headers libpthread-stubs make hwloc-dev@testing \
|
||||||
|
libuv-dev openssl-dev
|
||||||
|
|
||||||
|
WORKDIR /usr/local/src
|
||||||
|
|
||||||
|
RUN set -ex && \
|
||||||
|
git clone $my_repo xmrig && \
|
||||||
|
cd xmrig && git checkout $my_ref && \
|
||||||
|
cmake -B build && \
|
||||||
|
cd build && \
|
||||||
|
make
|
||||||
|
|
||||||
|
# runtime container
|
||||||
|
FROM alpine:latest
|
||||||
|
|
||||||
|
RUN set -ex && \
|
||||||
|
# testing required for hwloc
|
||||||
|
echo @testing http://nl.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories
|
||||||
|
|
||||||
|
RUN set -ex && \
|
||||||
|
apk --no-cache --update add \
|
||||||
|
# required libraries packages
|
||||||
|
openssl libuv hwloc@testing
|
||||||
|
|
||||||
|
COPY --from=build /usr/local/src/xmrig/build/xmrig /bin/
|
||||||
|
|
||||||
|
ENTRYPOINT ["/bin/xmrig"]
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
#define APP_ID "xmrig"
|
#define APP_ID "xmrig"
|
||||||
#define APP_NAME "XMRig"
|
#define APP_NAME "XMRig"
|
||||||
#define APP_DESC "XMRig miner"
|
#define APP_DESC "XMRig miner"
|
||||||
#define APP_VERSION "6.22.2"
|
#define APP_VERSION "6.22.2-dev"
|
||||||
#define APP_DOMAIN "xmrig.com"
|
#define APP_DOMAIN "xmrig.com"
|
||||||
#define APP_SITE "www.xmrig.com"
|
#define APP_SITE "www.xmrig.com"
|
||||||
#define APP_COPYRIGHT "Copyright (C) 2016-2024 xmrig.com"
|
#define APP_COPYRIGHT "Copyright (C) 2016-2024 xmrig.com"
|
||||||
|
|||||||
Reference in New Issue
Block a user