11 lines
203 B
Docker
11 lines
203 B
Docker
FROM amd64/debian:buster
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y nodejs npm patch
|
|
|
|
COPY . /srv/tor
|
|
WORKDIR /srv/tor
|
|
|
|
RUN npm install && \
|
|
cd node_modules && \
|
|
patch -p1 < ../granax.patch
|