mirror of
https://github.com/Luzifer/webtotp.git
synced 2024-11-08 07:20:07 +00:00
Fix build not working on Node 17
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
45a443c1e5
commit
906830f236
1 changed files with 2 additions and 2 deletions
|
@ -2,10 +2,10 @@ FROM golang:alpine as go
|
|||
|
||||
RUN set -ex \
|
||||
&& apk add git \
|
||||
&& go get -v github.com/Luzifer/gziphttp
|
||||
&& go install github.com/Luzifer/gziphttp@latest
|
||||
|
||||
|
||||
FROM node:alpine as node
|
||||
FROM node:16-alpine as node
|
||||
|
||||
COPY . /src
|
||||
WORKDIR /src
|
||||
|
|
Loading…
Reference in a new issue