12 lines
203 B
Text
12 lines
203 B
Text
|
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
|