mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
ee2f046383
* Upgrading node to node 18 * Ensure we're on latest version of yarn as well * add comma to make frontend tests run * Use Node 18 Alpine image in UI build dockerfile * delete package-lock.json --------- Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com> Co-authored-by: Ella Cai <ella.y.cai@gmail.com> Co-authored-by: Ella Cai <ella@hashicorp.com>
12 lines
228 B
Docker
12 lines
228 B
Docker
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
FROM docker.mirror.hashicorp.services/node:18-alpine
|
|
|
|
USER root
|
|
|
|
RUN apk update && apk add make
|
|
RUN mkdir /consul-src
|
|
WORKDIR /consul-src
|
|
CMD make dist-docker
|