Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.22-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 []
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.27.2
gopkg.in/yaml.v3 v3.0.1
)