Removed unneeded dependencies from Dockerfiles

This commit is contained in:
Kirill Fedoseev 2019-11-29 14:12:04 +03:00
parent 542e4cf3d6
commit caf7c8bf28
5 changed files with 5 additions and 6 deletions

View File

@ -3,7 +3,7 @@ FROM node:10.16.0-alpine
WORKDIR /watcher
RUN apk update && \
apk add libssl1.1 libressl-dev curl
apk add libressl-dev
COPY ./bncWatcher/package.json /watcher/

View File

@ -3,7 +3,7 @@ FROM node:10.16.0-alpine
WORKDIR /watcher
RUN apk update && \
apk add libssl1.1 libressl-dev curl
apk add libressl-dev
COPY ./ethWatcher/package.json /watcher/

View File

@ -3,7 +3,7 @@ FROM node:10.16.0-slim
WORKDIR /tss
RUN apt-get update && \
apt-get install -y libssl1.1 libssl-dev curl procps
apt-get install -y libssl-dev procps
COPY ./tss-keygen/package.json /tss/

View File

@ -3,8 +3,7 @@ FROM node:10.16.0-slim
WORKDIR /tss
RUN apt-get update && \
apt-get install -y libssl1.1 libssl-dev curl python make g++ libudev-dev libusb-dev usbutils procps
#apk packages: libssl1.1 eudev-dev libressl-dev curl build-base python linux-headers libusb-dev
apt-get install -y libssl-dev python make g++ libudev-dev usbutils procps
COPY ./tss-sign/package.json /tss/

View File

@ -1,7 +1,7 @@
FROM ubuntu:19.10
RUN apt-get update && \
apt-get install -y curl build-essential git openssl pkg-config libssl-dev libgmp3-dev
apt-get install -y curl build-essential openssl pkg-config libssl-dev libgmp3-dev
RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly-2019-08-28 -y
ENV PATH=/root/.cargo/bin:$PATH