Skip to content

Commit

Permalink
chore(deps): update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Dec 30, 2023
1 parent 5155115 commit 45ef3d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
@@ -1,7 +1,7 @@
defaults: &defaults
working_directory: /go/src/moul.io/fs-bundler
docker:
- image: circleci/golang:1.12
- image: circleci/golang:1.17
environment:
GO111MODULE: "on"

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,5 +1,5 @@
# build
FROM golang:1.12-alpine as builder
FROM golang:1.21-alpine as builder
RUN apk add --no-cache git gcc musl-dev make
ENV GO111MODULE=on
WORKDIR /go/src/moul.io/fs-bundler
Expand All @@ -9,7 +9,7 @@ COPY . ./
RUN make install

# minimalist runtime
FROM alpine:3.10
FROM alpine:3.19
COPY --from=builder /go/bin/fs-bundler /bin/
ENTRYPOINT ["/bin/fs-bundler"]
CMD []
6 changes: 3 additions & 3 deletions go.mod
Expand Up @@ -3,8 +3,8 @@ module moul.io/fs-bundler
go 1.12

require (
github.com/mattn/go-zglob v0.0.1
github.com/pkg/errors v0.8.1
gopkg.in/urfave/cli.v2 v2.0.0-20180128182452-d3ae77c26ac8
github.com/mattn/go-zglob v0.0.4
github.com/pkg/errors v0.9.1
gopkg.in/urfave/cli.v2 v2.27.1
gopkg.in/yaml.v3 v3.0.0-20190709130402-674ba3eaed22
)

0 comments on commit 45ef3d2

Please sign in to comment.