chore: update dependencies

This commit is contained in:
2023-08-31 11:21:36 -06:00
parent 456d7d2999
commit 81c1e3bfa6
7 changed files with 39 additions and 38 deletions

View File

@ -1,4 +1,4 @@
FROM golang:1.13 AS build
FROM golang:1.19 AS build
ARG HTTP_PROXY=
ARG HTTPS_PROXY=
@ -7,14 +7,14 @@ ARG https_proxy=
RUN apt-get update && apt-get install -y build-essential git bash curl
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - \
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \
&& apt-get install -y nodejs
COPY . /src
WORKDIR /src
RUN ( cd client && npm install ) \
RUN ( cd client && npm ci ) \
&& ( cd server && go mod vendor ) \
&& make ARCH_TARGETS=amd64 release