1
0
Fork 0

dockerfile: upgrade base image to 23.10

This commit is contained in:
liushuyu 2024-02-11 21:45:21 -07:00
parent c9510708ba
commit 80cf68a791
No known key found for this signature in database
GPG Key ID: 23D1CE4534419437
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
# syntax=docker/dockerfile:1.3 # syntax=docker/dockerfile:1.3
ARG UBUNTU_RELEASE=23.04 ARG UBUNTU_RELEASE=23.10
ARG USER=ubuntu UID=101 GROUP=ubuntu GID=101 ARG USER=ubuntu UID=101 GROUP=ubuntu GID=101
### BOILERPLATE BEGIN ### ### BOILERPLATE BEGIN ###
FROM golang:1.20 AS chisel FROM golang:1.22 AS chisel
ARG UBUNTU_RELEASE ARG UBUNTU_RELEASE
RUN git clone -b ubuntu-${UBUNTU_RELEASE} https://github.com/canonical/chisel-releases /opt/chisel-releases \ RUN git clone -b ubuntu-${UBUNTU_RELEASE} https://github.com/canonical/chisel-releases /opt/chisel-releases \
&& git clone --depth 1 -b main https://github.com/canonical/chisel /opt/chisel && git clone --depth 1 -b main https://github.com/canonical/chisel /opt/chisel