1
0
mirror of https://github.com/Luzifer/webtotp.git synced 2024-09-16 14:58:28 +00:00

Fix build not working on Node 17

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2021-12-22 17:26:01 +01:00
parent 45a443c1e5
commit 906830f236
Signed by: luzifer
GPG Key ID: 0066F03ED215AD7D

View File

@ -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