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 Nov 20, 2022
1 parent 5155115 commit 29a0a80
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build
FROM golang:1.12-alpine as builder
FROM golang:1.19-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 []
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module moul.io/fs-bundler

go 1.12
go 1.19

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.23.5
gopkg.in/yaml.v3 v3.0.1
)

0 comments on commit 29a0a80

Please sign in to comment.