Fix missing npm package install

Waiting for https://github.com/sorenisanerd/gotty/pull/38
This commit is contained in:
Benoit Tigeot 2022-06-15 15:28:50 +02:00
parent 4247a9a87e
commit fe50e22be6
No known key found for this signature in database
GPG Key ID: 8E6D4FC8AEBDA62C

View File

@ -2,6 +2,7 @@ FROM golang:1.16
WORKDIR /gotty
COPY . /gotty
RUN apt-get update && apt-get install -y nodejs npm
RUN CGO_ENABLED=0 make
FROM alpine:latest