diff options
Diffstat (limited to 'images/paste/Dockerfile')
-rw-r--r-- | images/paste/Dockerfile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/images/paste/Dockerfile b/images/paste/Dockerfile index 9eedd40..460061d 100644 --- a/images/paste/Dockerfile +++ b/images/paste/Dockerfile @@ -7,11 +7,6 @@ RUN apk add --no-cache git python3 py3-pip nodejs nodejs-npm graphicsmagick RUN git clone --single-branch --depth=1 --recursive https://github.com/ptpb/pb /app/pb RUN cd /app/pb \ - && npm install -g grunt-cli \ - && npm install && (cd node_modules/pbs; npm install) \ - && grunt - -RUN cd /app/pb \ && pip3 install --user -r requirements.txt FROM server_runit-edge @@ -22,3 +17,5 @@ COPY --from=builder /root/.local /root/.local ADD pb/config.yaml /root/.config/pb/config.yaml ADD uwsgi/pb.ini /app/pb.ini + +EXPOSE 80 |