Skip to content

Commit

Permalink
Update dependencies and use HTTPS for OpenResty repository
Browse files Browse the repository at this point in the history
  • Loading branch information
dannote committed Jun 14, 2021
1 parent 225f2b0 commit 9737390
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM alpine:3.12
FROM alpine:3.13

RUN set -eux; \
echo 'http://openresty.org/package/alpine/v3.12/main' | tee -a /etc/apk/repositories; \
wget 'http://openresty.org/package/[email protected]' -P /etc/apk/keys; \
echo 'https://openresty.org/package/alpine/v3.13/main' | tee -a /etc/apk/repositories; \
wget 'https://openresty.org/package/[email protected]' -P /etc/apk/keys; \
apk add --no-cache openresty tor nftables gettext

RUN set -eux; \
Expand All @@ -11,7 +11,7 @@ RUN set -eux; \
make \
luajit-dev; \
wget -O luarocks.tar.gz \
https://luarocks.github.io/luarocks/releases/luarocks-3.5.0.tar.gz; \
https://luarocks.github.io/luarocks/releases/luarocks-3.7.0.tar.gz; \
mkdir -p /usr/src/luarocks; \
tar xzf luarocks.tar.gz \
--directory /usr/src/luarocks \
Expand Down

0 comments on commit 9737390

Please sign in to comment.