Skip to content

Commit ed72274

Browse files
Bump Tailscale to 1.36.2 and node to 18.14 (#52)
* Bump Tailscale to 1.36.0 and node to 19.5 Major update to node and bumps Tailscale to 1.36.0 * Update ci.yaml * Update Dockerfile * Update Dockerfile
1 parent ccc0099 commit ed72274

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
- name: Build extension
1717
run: make extension
1818
env:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FROM alpine AS tailscale
22
RUN apk add --no-cache curl
33
ARG TARGETARCH
4-
ARG TSVERSION=1.34.0
4+
ARG TSVERSION=1.36.2
55
RUN curl -fSsLo /tmp/tailscale.tgz https://pkgs.tailscale.com/stable/tailscale_${TSVERSION}_${TARGETARCH}.tgz \
66
&& mkdir /out \
77
&& tar -C /out -xzf /tmp/tailscale.tgz --strip-components=1
88

9-
FROM node:14.17-alpine AS ui-builder
9+
FROM node:18.14-alpine AS ui-builder
1010
WORKDIR /app/ui
1111
# cache packages in layer
1212
COPY ui/package.json /app/ui/package.json

0 commit comments

Comments
 (0)