Skip to content

Commit

Permalink
Bump Tailscale to 1.36.2 and node to 18.14 (#52)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
SpencerIsGiddy authored Mar 1, 2023
1 parent ccc0099 commit ed72274
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Build extension
run: make extension
env:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM alpine AS tailscale
RUN apk add --no-cache curl
ARG TARGETARCH
ARG TSVERSION=1.34.0
ARG TSVERSION=1.36.2
RUN curl -fSsLo /tmp/tailscale.tgz https://pkgs.tailscale.com/stable/tailscale_${TSVERSION}_${TARGETARCH}.tgz \
&& mkdir /out \
&& tar -C /out -xzf /tmp/tailscale.tgz --strip-components=1

FROM node:14.17-alpine AS ui-builder
FROM node:18.14-alpine AS ui-builder
WORKDIR /app/ui
# cache packages in layer
COPY ui/package.json /app/ui/package.json
Expand Down

0 comments on commit ed72274

Please sign in to comment.