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 Mar 16, 2023
1 parent 5155115 commit 5f4f620
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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.20-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.17
COPY --from=builder /go/bin/fs-bundler /bin/
ENTRYPOINT ["/bin/fs-bundler"]
CMD []
8 changes: 4 additions & 4 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
gopkg.in/yaml.v3 v3.0.0-20190709130402-674ba3eaed22
github.com/mattn/go-zglob v0.0.4
github.com/pkg/errors v0.9.1
gopkg.in/urfave/cli.v2 v2.25.0
gopkg.in/yaml.v3 v3.0.1
)

0 comments on commit 5f4f620

Please sign in to comment.