Skip to content

Commit

Permalink
u[date
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed May 15, 2020
1 parent e3b946b commit c91ab75
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 12 deletions.
1 change: 1 addition & 0 deletions nes/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ RUN apt-get update && apt-get install -y \
libgl1-mesa-dev \
libgl1-mesa-dri \
libxcursor-dev \
libxxf86vm-dev \
libxi-dev \
libxinerama-dev \
libxrandr-dev \
Expand Down
2 changes: 1 addition & 1 deletion tor-browser/stable/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN useradd --create-home --home-dir $HOME user \
ENV LANG C.UTF-8

# https://www.torproject.org/projects/torbrowser.html.en
ENV TOR_VERSION 9.0.7
ENV TOR_VERSION 9.0.10
ENV TOR_FINGERPRINT 0x4E2C6E8793298290

# download tor and check signature
Expand Down
26 changes: 20 additions & 6 deletions vault/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,32 @@
FROM golang:alpine as builder
FROM golang:latest as builder
LABEL maintainer="Jessica Frazelle <[email protected]>"

ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go

RUN apk add --no-cache \
--repository http://dl-cdn.alpinelinux.org/alpine/edge/main/ \
bash \
RUN apt-get update && apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list

RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -

RUN apt-get update && apt-get install -y \
gcc \
git \
g++ \
make \
npm \
nodejs \
pkgconf \
python \
yarn \
zip
zip \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENV VAULT_VERSION v1.4.1

Expand Down
11 changes: 6 additions & 5 deletions weechat-matrix/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ RUN apk add --no-cache \
git \
libffi-dev \
libressl-dev \
python \
python-dev \
py2-pip \
olm-dev \
python3 \
python3-dev \
py3-pip \
weechat \
weechat-perl \
weechat-python \
Expand All @@ -34,8 +35,8 @@ RUN adduser -S user -h $HOME \
&& cd $HOME \
&& git clone https://github.com/poljar/weechat-matrix.git \
&& cd weechat-matrix \
&& pip install -r requirements.txt \
&& pip install websocket-client \
&& pip3 install -r requirements.txt \
&& pip3 install websocket-client \
&& make install \
&& chown -R user $HOME

Expand Down

0 comments on commit c91ab75

Please sign in to comment.