Skip to content

Commit

Permalink
build: upgraded to Go 1.18 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
itzg committed Jun 24, 2022
1 parent d27fa64 commit 78a8576
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: 1.18

- name: Run tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.17'
go-version: 1.18

- name: Run tests
run: |
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:1.15.0alpine3.12 AS builder
FROM golang:1.18-alpine3.16 AS builder

WORKDIR /app
COPY . /app
RUN go build


FROM alpine:3.9
FROM alpine:3.16

RUN apk add --no-cache -U \
ca-certificates
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ services:
grafana:
image: grafana/grafana
ports:
- 3000:3000
- "3000:3000"
environment:
GF_SECURITY_ADMIN_PASSWORD: notsecret
GF_AUTH_PROXY_ENABLED: "true"
GF_AUTH_PROXY_HEADER_NAME: X-WEBAUTH-USER
volumes:
- grafana:/var/lib/grafana
web-debug-server:
image: itzg/web-debug-server:1.2.2
image: itzg/web-debug-server:1.2.3
ports:
- 8081:8080
- "8081:8080"

volumes:
grafana: {}

0 comments on commit 78a8576

Please sign in to comment.