We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a498976 commit 8169ac2Copy full SHA for 8169ac2
1 file changed
local/Dockerfile
@@ -5,22 +5,15 @@ ENV LUA_DIR "/lua_install"
5
ENV PATH "$PATH:$LUA_DIR/bin"
6
7
RUN apt-get -y update \
8
- && apt-get install -y -qq --no-install-recommends unzip \
+ && apt-get install -y -qq --no-install-recommends sudo zip unzip \
9
&& pip install hererocks \
10
&& hererocks $LUA_DIR -r^ --lua=$LUA_VERSION \
11
+ && luarocks install libsodium \
12
&& luarocks install basexx \
13
&& luarocks install lua-struct \
14
&& luarocks install busted \
15
&& luarocks install luacheck \
16
&& luarocks install luacov
-
17
-RUN wget https://download.libsodium.org/libsodium/releases/LATEST.tar.gz \
18
- && tar xzf LATEST.tar.gz \
19
- && cd libsodium-stable/ \
20
- && ./configure --prefix=/usr \
21
- && make \
22
- && make check \
23
- && make install
24
25
WORKDIR /paseto
26
0 commit comments